| 315 | } |
| 316 | |
| 317 | void impala::GetFullLogFilename(google::LogSeverity severity, string* filename) { |
| 318 | stringstream ss; |
| 319 | ss << FLAGS_log_dir << "/" << FLAGS_log_filename << "." |
| 320 | << google::GetLogSeverityName(severity); |
| 321 | *filename = ss.str(); |
| 322 | } |
| 323 | |
| 324 | void impala::ShutdownLogging() { |
| 325 | // This method may only correctly be called once (which this lock does not |