mirror of
https://github.com/unraid/api.git
synced 2026-01-22 08:29:42 -06:00
14 lines
535 B
TypeScript
14 lines
535 B
TypeScript
/*!
|
|
* Copyright 2019-2020 Lime Technology Inc. All rights reserved.
|
|
* Written by: Alexis Tyler
|
|
*/
|
|
|
|
import { Logger } from 'logger';
|
|
|
|
export const log = new Logger({ prefix: '@unraid' });
|
|
export const coreLogger = log.createChild({ prefix: 'core' });
|
|
export const mothershipLogger = log.createChild({ prefix: 'mothership' });
|
|
export const graphqlLogger = log.createChild({ prefix: 'graphql' });
|
|
export const relayLogger = log.createChild({ prefix: 'relay' });
|
|
export const discoveryLogger = log.createChild({ prefix: 'discovery' });
|