Hi @nspragg, Have type error in our current logger when try to use the `console` for logger https://github.com/bbc/flashheart/blob/master/src/core/clientParams.ts#L20 ```typescript interface LogMethod { (message: string, callback: LogCallback): Logger; (message: string, meta: any, callback: LogCallback): Logger; (message: string, ...meta: any[]): Logger; (infoObject: object): Logger; } ```  Do I need to do have custom class to implement the Logger interface?
Hi @nspragg,
Have type error in our current logger when try to use the
consolefor logger https://github.com/bbc/flashheart/blob/master/src/core/clientParams.ts#L20Do I need to do have custom class to implement the Logger interface?