mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
11 lines
200 B
C++
11 lines
200 B
C++
#include "swift/logging/SwiftLogging.h"
|
|
|
|
namespace codeql {
|
|
namespace fs_logger {
|
|
inline Logger& logger() {
|
|
static Logger ret{"fs"};
|
|
return ret;
|
|
}
|
|
} // namespace fs_logger
|
|
} // namespace codeql
|