Macros now call new logging system instead of the old one.

This commit is contained in:
David Williams
2014-01-29 21:29:00 +01:00
parent 84921f4d0b
commit f4e03cc537
2 changed files with 14 additions and 14 deletions

View File

@ -31,7 +31,7 @@ namespace PolyVox
// to the header file: http://stackoverflow.com/a/7834555
Logger*& getLoggerInstance()
{
static Logger* s_pLogger = 0;
static Logger* s_pLogger = new DefaultLogger;
return s_pLogger;
}
}