From 303947289c607f18f6f38afb2f297c259a907c19 Mon Sep 17 00:00:00 2001 From: Ernest Okot Date: Mon, 14 May 2018 20:59:27 +0300 Subject: [PATCH] fix: fixed no default import error --- src/utils/logger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/logger.ts b/src/utils/logger.ts index 3d33f7a..9e8340c 100644 --- a/src/utils/logger.ts +++ b/src/utils/logger.ts @@ -1,4 +1,4 @@ -import debug from 'debug'; +import * as debug from 'debug'; const log = debug('sugarmq');