Skip to content

Commit eafda4f

Browse files
committed
Fix log prefix
1 parent fed3e8b commit eafda4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Utilities/Debug.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ void Debug::Log(const char* pFormat, ...)
3333
va_list args;
3434
va_start(args, pFormat);
3535
vsprintf_s(FinalStringBuffer, pFormat, args);
36-
LogGame("%s %s", "[Phobos]", FinalStringBuffer);
36+
LogGame("%s %s", "[Spawner]", FinalStringBuffer);
3737
va_end(args);
3838
}
3939

0 commit comments

Comments
 (0)