@koreanpanda/inscriber
Version:
A Logger that can write logs, and print them, with full customization.
80 lines (79 loc) • 3.37 kB
JavaScript
;
/**========================================================================
* ? ABOUT
* @author : Cody Spratford
* @email : koreanpanda345@gmail.com
* @repo :
* @createdOn : 11/14/2020
* @description : This is the index barrel file. This Bundles the files,
* and makes it were the user can call on the src folder for these classes.
* @since : 11/21/2020
* @license
* Copyright 2020 Cody Spratford. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file in the root directory of this source tree.
*========================================================================**/
var __createBinding =
(this && this.__createBinding) ||
(Object.create
? function (o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, {
enumerable: true,
get: function () {
return m[k];
},
});
}
: function (o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
});
var __exportStar =
(this && this.__exportStar) ||
function (m, exports) {
for (var p in m)
if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
// LINK src\Inscriber.ts
__exportStar(require("./Inscriber"), exports);
// LINK src\builders\InscriberConfigBuilder.ts
__exportStar(require("./builders/InscriberConfigBuilder"), exports);
__exportStar(require("./builders/CustomLogBuilder"), exports);
/**========================================================================
* SECTION Tasks
*========================================================================**/
/**========================================================================
* TODO LIST
* - [1] TODO Add integration to Node.js, to redirect the errors and events to inscriber.
* - [2] TODO Add warn and debug methods.
* - [3] TODO Make it where you can use the Config Builder as the Config File.
*
*
*========================================================================**/
/**========================================================================
* COMPLETED Tasks
* - COMPLETED Custom Logs
* - SINCE 11/21/2020
* - COMPLETED Overwrite config file with Config Builder.
* - SINCE 11/19/2020
* -
*========================================================================**/
/**========================================================================
* BUG Report
* - BUG
* - SINCE
* - LINK
*
*========================================================================**/
/**========================================================================
* FIXME Tasks
* - FIXME
* - SINCE
* - LINK
*========================================================================**/
/**========================================================================
* !SECTION Tasks
*========================================================================**/