| 111 | //----------------------------------------------------------------------------- |
| 112 | |
| 113 | bool ConsoleLogger::init() |
| 114 | { |
| 115 | if( smInitialized ) |
| 116 | return true; |
| 117 | |
| 118 | Con::addConsumer( ConsoleLogger::logCallback ); |
| 119 | smInitialized = true; |
| 120 | |
| 121 | return true; |
| 122 | } |
| 123 | |
| 124 | //----------------------------------------------------------------------------- |
| 125 |
nothing calls this directly
no test coverage detected