mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 20:14:15 +00:00
56 lines
1.3 KiB
JavaScript
Executable file
56 lines
1.3 KiB
JavaScript
Executable file
/*
|
|
* noVNC: HTML5 VNC client
|
|
* Copyright (C) 2019 The noVNC Authors
|
|
* Licensed under MPL 2.0 (see LICENSE.txt)
|
|
*
|
|
* See README.md for usage and integration instructions.
|
|
*/
|
|
|
|
/*
|
|
* Logging/debug routines
|
|
*/
|
|
|
|
let _logLevel = 'warn';
|
|
|
|
let Debug = () => {};
|
|
let Info = () => {};
|
|
let Warn = () => {};
|
|
let Error = () => {};
|
|
|
|
export function initLogging(level) {
|
|
if (typeof level === 'undefined') {
|
|
level = _logLevel;
|
|
} else {
|
|
_logLevel = level;
|
|
}
|
|
|
|
Debug = Info = Warn = Error = () => {};
|
|
|
|
if (typeof window.console !== "undefined") {
|
|
/* eslint-disable no-console, no-fallthrough */
|
|
switch (level) {
|
|
case 'debug':
|
|
Debug = console.debug.bind(window.console);
|
|
case 'info':
|
|
Info = console.info.bind(window.console);
|
|
case 'warn':
|
|
Warn = console.warn.bind(window.console);
|
|
case 'error':
|
|
Error = console.error.bind(window.console);
|
|
case 'none':
|
|
break;
|
|
default:
|
|
throw new window.Error("invalid logging type '" + level + "'");
|
|
}
|
|
/* eslint-enable no-console, no-fallthrough */
|
|
}
|
|
}
|
|
|
|
export function getLogging() {
|
|
return _logLevel;
|
|
}
|
|
|
|
export { Debug, Info, Warn, Error };
|
|
|
|
// Initialize logging level
|
|
initLogging();
|