Skip to content
Snippets Groups Projects
Verified Commit 970e98c3 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

chore: commit save point

parent 6437439b
No related branches found
No related tags found
No related merge requests found
/** /**
* Copyright schukai GmbH and contributors 2022. All Rights Reserved. * Copyright schukai GmbH and contributors 2022. All Rights Reserved.
* Node module: @schukai/monster * Node module: @schukai/monster
...@@ -7,7 +5,6 @@ ...@@ -7,7 +5,6 @@
* License text available at https://www.gnu.org/licenses/agpl-3.0.en.html * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
*/ */
import {Base} from '../types/base.mjs'; import {Base} from '../types/base.mjs';
import {validateInstance, validateInteger} from "../types/validate.mjs"; import {validateInstance, validateInteger} from "../types/validate.mjs";
import {LogEntry} from "./logentry.mjs"; import {LogEntry} from "./logentry.mjs";
...@@ -18,13 +15,6 @@ export {Handler} ...@@ -18,13 +15,6 @@ export {Handler}
/** /**
* The log handler is the interface between the log entries and the log listeners. * The log handler is the interface between the log entries and the log listeners.
* *
* ```
* <script type="module">
* import {ID} from '@schukai/monster/source/logging/handler.mjs';
* console.log(new Handler())
* </script>
* ```
*
* @license AGPLv3 * @license AGPLv3
* @since 1.5.0 * @since 1.5.0
* @copyright schukai GmbH * @copyright schukai GmbH
......
/** /**
* Copyright schukai GmbH and contributors 2022. All Rights Reserved. * Copyright schukai GmbH and contributors 2022. All Rights Reserved.
* Node module: @schukai/monster * Node module: @schukai/monster
...@@ -7,7 +5,6 @@ ...@@ -7,7 +5,6 @@
* License text available at https://www.gnu.org/licenses/agpl-3.0.en.html * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
*/ */
import {Base} from '../../types/base.mjs'; import {Base} from '../../types/base.mjs';
import {getGlobalObject} from "../../types/global.mjs"; import {getGlobalObject} from "../../types/global.mjs";
import {Handler} from '../handler.mjs'; import {Handler} from '../handler.mjs';
...@@ -18,13 +15,6 @@ export {ConsoleHandler} ...@@ -18,13 +15,6 @@ export {ConsoleHandler}
/** /**
* You can create an object of the class simply by using the namespace `new Monster.Logging.Handler.ConsoleHandler()`. * You can create an object of the class simply by using the namespace `new Monster.Logging.Handler.ConsoleHandler()`.
* *
* ```
* <script type="module">
* import {ConsoleHandler} from '@schukai/monster/source/logging/handler/console.mjs';
* console.log(new ConsoleHandler())
* </script>
* ```
*
* @license AGPLv3 * @license AGPLv3
* @since 1.5.0 * @since 1.5.0
* @copyright schukai GmbH * @copyright schukai GmbH
...@@ -35,7 +25,6 @@ export {ConsoleHandler} ...@@ -35,7 +25,6 @@ export {ConsoleHandler}
super(); super();
} }
/** /**
* This is the central log function. this method must be * This is the central log function. this method must be
* overwritten by derived handlers with their own logic. * overwritten by derived handlers with their own logic.
......
/** /**
* @namespace Monster.Logging.Handler * @namespace Monster.Logging.Handler
* @memberOf Monster.Logging * @memberOf Monster.Logging
......
/** /**
* Copyright schukai GmbH and contributors 2022. All Rights Reserved. * Copyright schukai GmbH and contributors 2022. All Rights Reserved.
* Node module: @schukai/monster * Node module: @schukai/monster
...@@ -7,8 +5,6 @@ ...@@ -7,8 +5,6 @@
* License text available at https://www.gnu.org/licenses/agpl-3.0.en.html * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
*/ */
import {Base} from '../types/base.mjs'; import {Base} from '../types/base.mjs';
import {validateInteger} from '../types/validate.mjs'; import {validateInteger} from '../types/validate.mjs';
...@@ -17,13 +13,6 @@ export {LogEntry} ...@@ -17,13 +13,6 @@ export {LogEntry}
/** /**
* A log entry for the logger * A log entry for the logger
* *
* ```
* <script type="module">
* import {ID} from '@schukai/monster/source/logging/logentry.mjs';
* console.log(new LogEntry())
* </script>
* ```
*
* @license AGPLv3 * @license AGPLv3
* @since 1.5.0 * @since 1.5.0
* @copyright schukai GmbH * @copyright schukai GmbH
......
/** /**
* Copyright schukai GmbH and contributors 2022. All Rights Reserved. * Copyright schukai GmbH and contributors 2022. All Rights Reserved.
* Node module: @schukai/monster * Node module: @schukai/monster
...@@ -7,7 +5,6 @@ ...@@ -7,7 +5,6 @@
* License text available at https://www.gnu.org/licenses/agpl-3.0.en.html * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
*/ */
import {Handler} from '../logging/handler.mjs'; import {Handler} from '../logging/handler.mjs';
import {LogEntry} from '../logging/logentry.mjs'; import {LogEntry} from '../logging/logentry.mjs';
...@@ -68,13 +65,6 @@ const OFF = 0; ...@@ -68,13 +65,6 @@ const OFF = 0;
/** /**
* The logger is a class that takes care of logging. * The logger is a class that takes care of logging.
* *
* ```
* <script type="module">
* import {ID} from '@schukai/monster/source/logging/logger.mjs';
* new Logger()
* </script>
* ```
*
* @license AGPLv3 * @license AGPLv3
* @since 1.5.0 * @since 1.5.0
* @copyright schukai GmbH * @copyright schukai GmbH
......
/** /**
* Namespace for logging. * Namespace for logging.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment