It's simply:
Code:
#ifdef USE_LOG
    #define LOG(string) Logger::Get().Log(string)
#else
    #define LOG(string)
#endif