�PNG  IHDR��;���IDATx��ܻn�0���K�� �)(�pA��� ���7�LeG{�� �§㻢|��ذaÆ 6lذaÆ 6lذaÆ 6lom��$^�y���ذag�5bÆ 6lذaÆ 6lذa{���� 6lذaÆ �`����}H�Fkm�,�m����Ӫ���ô�ô!� �x�|'ܢ˟;�E:���9�&ᶒ�}�{�v]�n&�6� �h��_��t�ڠ͵-ҫ���Z;��Z$�.�P���k�ž)�!��o���>}l�eQfJ�T��u і���چ��\��X=8��Rن4`Vw�l�>����n�G�^��i�s��"ms�$�u��i��?w�bs[m�6�K4���O���.�4��%����/����b�C%��t ��M�ז� �-l�G6�mrz2���s�%�9��s@���-�k�9�=���)������k�B5����\��+͂�Zsٲ ��Rn��~G���R���C����� �wIcI��n7jJ���hۛNCS|���j0��8y�iHKֶۛ�k�Ɉ+;Sz������L/��F�*\��Ԕ�#"5��m�2��[S��������=�g��n�a�P�e�ғ�L�� lذaÆ 6l�^k��̱aÆ 6lذaÆ 6lذa;���� �_��ذaÆ 6lذaÆ 6lذaÆ ���R���IEND�B` const chalk = require('chalk'); /** * @typedef {object} LogMessage * @property {string} text * @property {'info' | 'warn' | 'error'} type **/ /** * @typedef {'default' | 'green' | 'red'} LogColor **/ class Log { /** * Determine if we are in test mode. */ static testing = false; /** * All logged messages. * * @type {string[]} */ static fakedLogs = []; /** * Log basic info to the console. * * @param {string} message * @param {LogColor} color */ static info(message, color = 'default') { if (Log.testing) { Log.fakedLogs.push(message); return; } console.log(Log.colors()[color], message); Log.reset(); } /** * * @param {LogMessage} message */ static message(message) { if (Log.testing) { Log.fakedLogs.push(message.text); return; } /** @type {string} */ let prefix = ''; if (message.type === 'info') { prefix = ' INFO '; } else if (message.type === 'warn') { prefix = ' WARN '; } else if (message.type === 'error') { prefix = ' ERR '; } const line = message.text.replace(/\n/g, '\n' + ' '.repeat(prefix.length + 1)); if (message.type === 'info') { console.warn(`${chalk.bgBlue.white(prefix)} ${chalk.white(line)}`); } else if (message.type === 'warn') { console.warn(`${chalk.bgYellow.black(prefix)} ${chalk.yellow(line)}`); } else if (message.type === 'error') { console.warn(`${chalk.bgRed.white(prefix)} ${chalk.red(line)}`); } } /** * Log feedback info to the console. * * @param {string} message * @param {LogColor} color */ static feedback(message, color = 'green') { Log.line('\t' + message, color); } /** * Log error info to the console. * * @param {string} message * @param {LogColor} color */ static error(message, color = 'red') { Log.line(message, color); } /** * Log a new line of info to the console. * * @param {string} message * @param {LogColor} color */ static line(message, color = 'default') { Log.info(message, color); } /** * Reset the default color for future console.logs. */ static reset() { console.log(Log.colors()['default'], ''); } /** * Enter testing mode. */ static fake() { Log.testing = true; } /** * Exit testing mode. */ static restore() { Log.testing = false; Log.fakedLogs = []; } /** * Determine if the given message was logged. * * @param {string} message */ static received(message) { let result = Log.fakedLogs.some(log => log.includes(message)); Log.restore(); return result; } /** * The colors lookup table. */ static colors() { return { default: '\x1b[0m', green: '\x1b[32m', red: '\x1b[31m' }; } } module.exports = Log;