forked from mystiq/hydrogen-web
add explicit void return type
This commit is contained in:
parent
5f362cbdbd
commit
b1d20178f8
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ export abstract class BaseLogger implements ILogger {
|
|||
this._platform = platform;
|
||||
}
|
||||
|
||||
log(labelOrValues: LabelOrValues, logLevel: LogLevel = LogLevel.Info) {
|
||||
log(labelOrValues: LabelOrValues, logLevel: LogLevel = LogLevel.Info): void {
|
||||
const item = new LogItem(labelOrValues, logLevel, this);
|
||||
item.end = item.start;
|
||||
this._persistItem(item, undefined, false);
|
||||
|
|
Loading…
Reference in a new issue