UNPKG

660 BJavaScriptView Raw
1"use strict";
2/*
3 * @adonisjs/sink
4 *
5 * (c) Harminder Virk <virk@adonisjs.com>
6 *
7 * For the full copyright and license information, please view the LICENSE
8 * file that was distributed with this source code.
9 */
10var __importDefault = (this && this.__importDefault) || function (mod) {
11 return (mod && mod.__esModule) ? mod : { "default": mod };
12};
13Object.defineProperty(exports, "__esModule", { value: true });
14const log_1 = __importDefault(require("mrm-core/src/util/log"));
15/**
16 * Overwriting mrm logger to have support for custom log messages
17 */
18function noop() { }
19log_1.default.info = noop;
20log_1.default.removed = noop;
21log_1.default.added = noop;