packages/backend-common: import winston as namespace

This commit is contained in:
Patrik Oldsberg
2020-06-14 11:15:21 +02:00
parent 8aee97383e
commit 3bdcc175d9
5 changed files with 9 additions and 9 deletions
@@ -14,7 +14,7 @@
* limitations under the License.
*/
import winston from 'winston';
import * as winston from 'winston';
import { getRootLogger, setRootLogger } from './rootLogger';
describe('rootLogger', () => {
@@ -14,9 +14,9 @@
* limitations under the License.
*/
import winston, { Logger } from 'winston';
import * as winston from 'winston';
let rootLogger: Logger = winston.createLogger({
let rootLogger: winston.Logger = winston.createLogger({
level: process.env.LOG_LEVEL || 'info',
format:
process.env.NODE_ENV === 'production'
@@ -35,10 +35,10 @@ let rootLogger: Logger = winston.createLogger({
],
});
export function getRootLogger(): Logger {
export function getRootLogger(): winston.Logger {
return rootLogger;
}
export function setRootLogger(newLogger: Logger) {
export function setRootLogger(newLogger: winston.Logger) {
rootLogger = newLogger;
}
@@ -15,12 +15,12 @@
*/
import { PassThrough } from 'stream';
import winston, { Logger } from 'winston';
import * as winston from 'winston';
/**
* A logger that just throws away all messages.
*/
export function getVoidLogger(): Logger {
export function getVoidLogger(): winston.Logger {
return winston.createLogger({
transports: [new winston.transports.Stream({ stream: new PassThrough() })],
});
@@ -16,7 +16,7 @@
import express from 'express';
import request from 'supertest';
import winston from 'winston';
import * as winston from 'winston';
import { requestLoggingHandler } from './requestLoggingHandler';
describe('requestLoggingHandler', () => {
@@ -14,7 +14,7 @@
* limitations under the License.
*/
import { StorageBase, createStorage } from '.';
import winston from 'winston';
import * as winston from 'winston';
describe('Storage Interface Test', () => {
const mockStore = new (class MockStorage implements StorageBase {