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