static error()

in src/Logger.js [71:76]


	static error(code, msg, ...debugs) {
		const args = concatArgs(
			`ERROR: ${code} ${msg} ${WARN_DEFINITIONS_URL}#${code.toLowerCase()}`,
			debugs);
		log('error', args);
	}