mirror of
https://github.com/unraid/api.git
synced 2026-04-24 16:28:31 -05:00
13 lines
530 B
TypeScript
13 lines
530 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'}); |