-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathloggers.ts
More file actions
23 lines (17 loc) · 844 Bytes
/
loggers.ts
File metadata and controls
23 lines (17 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* This module contains instantiated loggers to use in the extension.
*/
import { OutputChannelLogger } from "./output-channel-logger";
// Global logger for the extension.
export const extLogger = new OutputChannelLogger("CodeQL Extension Log");
// Logger for messages from the query server.
export const queryServerLogger = new OutputChannelLogger("CodeQL Query Server");
// Logger for messages from the query server for warming overlay-base cache.
export const queryServerForWarmingOverlayBaseCacheLogger =
new OutputChannelLogger("CodeQL Query Server for warming overlay-base cache");
// Logger for messages from the language server.
export const languageServerLogger = new OutputChannelLogger(
"CodeQL Language Server",
);
// Logger for messages from tests.
export const testLogger = new OutputChannelLogger("CodeQL Tests");