Merge pull request #1876 from angeliski/fix/winston-error-namespace

fix: update the winston logger to use namespace
This commit is contained in:
Patrik Oldsberg
2020-08-09 10:25:10 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -15,7 +15,7 @@
*/
import { createRouter } from './router';
import winston from 'winston';
import * as winston from 'winston';
import { ConfigReader } from '@backstage/config';
import { loadBackendConfig } from '@backstage/backend-common';
@@ -14,7 +14,7 @@
* limitations under the License.
*/
import { PassThrough } from 'stream';
import winston from 'winston';
import * as winston from 'winston';
import { JsonValue } from '@backstage/config';
export const makeLogStream = (meta: Record<string, JsonValue>) => {