mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-22 03:05:19 -04:00
docs: consolidate docs (#2182)
Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
8d46d7e39e
commit
ecffebc43c
307 changed files with 1474 additions and 487 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||||
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
||||
*
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
@ -16,7 +16,7 @@ export enum LogLevel {
|
|||
type OutputFunction = (...data: unknown[]) => void
|
||||
|
||||
/**
|
||||
* Simple logger that prefixes messages with a timestamp and a name
|
||||
* Simple logger that prefixes messages with a timestamp and a name.
|
||||
*/
|
||||
export class Logger {
|
||||
private readonly scope: string
|
||||
|
@ -26,7 +26,8 @@ export class Logger {
|
|||
}
|
||||
|
||||
/**
|
||||
* Logs a debug message
|
||||
* Logs a debug message.
|
||||
*
|
||||
* @param data data to log
|
||||
*/
|
||||
debug(...data: unknown[]): void {
|
||||
|
@ -34,7 +35,8 @@ export class Logger {
|
|||
}
|
||||
|
||||
/**
|
||||
* Logs a normal informative message
|
||||
* Logs a normal informative message.
|
||||
*
|
||||
* @param data data to log
|
||||
*/
|
||||
info(...data: unknown[]): void {
|
||||
|
@ -42,7 +44,8 @@ export class Logger {
|
|||
}
|
||||
|
||||
/**
|
||||
* Logs a warning
|
||||
* Logs a warning.
|
||||
*
|
||||
* @param data data to log
|
||||
*/
|
||||
warn(...data: unknown[]): void {
|
||||
|
@ -50,7 +53,8 @@ export class Logger {
|
|||
}
|
||||
|
||||
/**
|
||||
* Logs an error
|
||||
* Logs an error.
|
||||
*
|
||||
* @param data data to log
|
||||
*/
|
||||
error(...data: unknown[]): void {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue