![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-ui/view/base/web/js/lib/logger/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'underscore' ], function (_) { 'use strict'; var LEVELS, CODE_MAP; LEVELS = { NONE: 0, ERROR: 1, WARN: 2, INFO: 3, DEBUG: 4, ALL: 5 }; CODE_MAP = _.invert(LEVELS); return { /** * Returns the list of available log levels. * * @returns {Object} */ getLevels: function () { return LEVELS; }, /** * Returns name of the log level that matches to the provided code. * * @returns {String} */ getNameByCode: function (code) { return CODE_MAP[code]; } }; });