mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +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
|