mirror of
https://github.com/coder/code-server.git
synced 2024-12-04 23:03:06 +08:00
12 lines
189 B
TypeScript
12 lines
189 B
TypeScript
export const loggerModule = {
|
|
field: jest.fn(),
|
|
level: 2,
|
|
logger: {
|
|
debug: jest.fn(),
|
|
error: jest.fn(),
|
|
info: jest.fn(),
|
|
trace: jest.fn(),
|
|
warn: jest.fn(),
|
|
},
|
|
}
|