diff --git a/application/source/logging/handler.mjs b/application/source/logging/handler.mjs index 2f02535e9e57126b82203dd6b18ccbb2831b385b..9971ce6dc9ecf0d2da4f14b3a57c75717f1caa90 100644 --- a/application/source/logging/handler.mjs +++ b/application/source/logging/handler.mjs @@ -1,5 +1,3 @@ - - /** * Copyright schukai GmbH and contributors 2022. All Rights Reserved. * Node module: @schukai/monster @@ -7,7 +5,6 @@ * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html */ - import {Base} from '../types/base.mjs'; import {validateInstance, validateInteger} from "../types/validate.mjs"; import {LogEntry} from "./logentry.mjs"; @@ -17,13 +14,6 @@ export {Handler} /** * 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 * @since 1.5.0 diff --git a/application/source/logging/handler/console.mjs b/application/source/logging/handler/console.mjs index 4d7e512d1824793fbb66554931b1ddedfb5647fd..7a76fd284e624e56c5f692ff4f261369bf5dd0a0 100644 --- a/application/source/logging/handler/console.mjs +++ b/application/source/logging/handler/console.mjs @@ -1,5 +1,3 @@ - - /** * Copyright schukai GmbH and contributors 2022. All Rights Reserved. * Node module: @schukai/monster @@ -7,7 +5,6 @@ * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html */ - import {Base} from '../../types/base.mjs'; import {getGlobalObject} from "../../types/global.mjs"; import {Handler} from '../handler.mjs'; @@ -18,13 +15,6 @@ export {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 * @since 1.5.0 * @copyright schukai GmbH @@ -35,7 +25,6 @@ export {ConsoleHandler} super(); } - /** * This is the central log function. this method must be * overwritten by derived handlers with their own logic. diff --git a/application/source/logging/handler/namespace.mjs b/application/source/logging/handler/namespace.mjs index 9ee299dbf34ae0b2fb0693f048c94a131067e52c..881e8aab967fe117684e80a12ff3cefa0672ca21 100644 --- a/application/source/logging/handler/namespace.mjs +++ b/application/source/logging/handler/namespace.mjs @@ -1,5 +1,3 @@ - - /** * @namespace Monster.Logging.Handler * @memberOf Monster.Logging diff --git a/application/source/logging/logentry.mjs b/application/source/logging/logentry.mjs index c16504096444678352b43e6e065dcf02f673c255..e93ab04788fa71240dee1afd637ed87e2789a0ab 100644 --- a/application/source/logging/logentry.mjs +++ b/application/source/logging/logentry.mjs @@ -1,5 +1,3 @@ - - /** * Copyright schukai GmbH and contributors 2022. All Rights Reserved. * Node module: @schukai/monster @@ -7,8 +5,6 @@ * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html */ - - import {Base} from '../types/base.mjs'; import {validateInteger} from '../types/validate.mjs'; @@ -16,13 +12,6 @@ export {LogEntry} /** * 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 * @since 1.5.0 diff --git a/application/source/logging/logger.mjs b/application/source/logging/logger.mjs index 35ea56ee403a95040f42d823656369b02ed4942c..d45b108f7346a6500126883a19c06e80d2224f70 100644 --- a/application/source/logging/logger.mjs +++ b/application/source/logging/logger.mjs @@ -1,5 +1,3 @@ - - /** * Copyright schukai GmbH and contributors 2022. All Rights Reserved. * Node module: @schukai/monster @@ -7,7 +5,6 @@ * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html */ - import {Handler} from '../logging/handler.mjs'; import {LogEntry} from '../logging/logentry.mjs'; @@ -68,13 +65,6 @@ const OFF = 0; /** * 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 * @since 1.5.0 * @copyright schukai GmbH diff --git a/application/source/logging/namespace.mjs b/application/source/logging/namespace.mjs index 48e2a7acd4d4e26c513d67d3ceeb33cce033a9bf..9f8133ed04fb84f7be6dc0f0dba77656c9309618 100644 --- a/application/source/logging/namespace.mjs +++ b/application/source/logging/namespace.mjs @@ -1,5 +1,3 @@ - - /** * Namespace for logging. *