----------------------------------------------------------------------------- Provide a new log file name (applicable to future writes) -----------------------------------------------------------------------------
| 336 | // Provide a new log file name (applicable to future writes) |
| 337 | //----------------------------------------------------------------------------- |
| 338 | string LogImpl::GetLogLevelString |
| 339 | ( |
| 340 | LogLevel _level |
| 341 | ) |
| 342 | { |
| 343 | if ((_level >= LogLevel_None) && (_level <= LogLevel_Internal)) { |
| 344 | char buf[20]; |
| 345 | snprintf( buf, sizeof(buf), "%s, ", LogLevelString[_level] ); |
| 346 | return buf; |
| 347 | } |
| 348 | else |
| 349 | return "Unknown, "; |
| 350 | } |
nothing calls this directly
no outgoing calls
no test coverage detected