Debugging why Jenkins is failing. Changing a harmless assert to a warning to check if this allows server launcher to run on Jenkins machine. Not sure why this would work, just grabbing at straws

Signed-off-by: Gene Walters <genewalt@amazon.com>
This commit is contained in:
Gene Walters
2021-10-20 16:38:39 -07:00
parent 322e339543
commit 9ef70d2ae7
2 changed files with 2 additions and 2 deletions
@@ -152,7 +152,7 @@ namespace LegacyLevelSystem
// [LYN-2376] Remove once legacy slice support is removed
int SpawnableLevelSystem::GetLevelCount()
{
AZ_Assert(false, "GetLevelCount - No longer supported.");
AZ_Warning("SpawnableLevelSystem", false, "GetLevelCount - No longer supported.");
return 0;
}