----------------------------------------------------------------------------- Provide a new log file name (applicable to future writes) -----------------------------------------------------------------------------
| 366 | // Provide a new log file name (applicable to future writes) |
| 367 | //----------------------------------------------------------------------------- |
| 368 | string LogImpl::GetLogLevelString |
| 369 | ( |
| 370 | LogLevel _level |
| 371 | ) |
| 372 | { |
| 373 | if ((_level >= LogLevel_None) && (_level <= LogLevel_Internal)) { |
| 374 | char buf[20]; |
| 375 | snprintf( buf, sizeof(buf), "%s, ", LogLevelString[_level] ); |
| 376 | return buf; |
| 377 | } |
| 378 | else |
| 379 | return "Unknown, "; |
| 380 | } |
nothing calls this directly
no outgoing calls
no test coverage detected