From 7a05e4484daf9b76b06fea1778dfb7e1138e5d45 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 4 Nov 2018 14:19:31 +0100 Subject: [PATCH] fix(api): streamline api --- ts/smartlog.classes.smartlog.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ts/smartlog.classes.smartlog.ts b/ts/smartlog.classes.smartlog.ts index fb2d090..17f4410 100644 --- a/ts/smartlog.classes.smartlog.ts +++ b/ts/smartlog.classes.smartlog.ts @@ -16,7 +16,7 @@ export class Smartlog { private consoleEnabled: boolean; - public logRouter = new LogRouter(); + private logRouter = new LogRouter(); public addLogDestination = this.logRouter.addLogDestination; @@ -37,12 +37,6 @@ export class Smartlog { this.consoleEnabled = true; } - /** - * set a minimum serverity level to log - * @param levelArg - */ - level(levelArg: TLogLevel) {} - // ============= // log functions // =============