mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-22 11:15:23 -04:00
Utils: Add needToLog function
This functions makes it possible to make a partial order of the Loglevel enum. This simplifies the if statements in ConsoleLogger. This is done, because the Loglevel enum already has a string backing for easy conversion from the config environmental variables and therefore can't also have a ordinal number assigned… Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
697ca823d5
commit
e9664b4aa7
2 changed files with 70 additions and 0 deletions
src/config
|
@ -4,6 +4,8 @@
|
|||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
import { Loglevel } from './loglevel.enum';
|
||||
|
||||
export function toArrayConfig(configValue: string, separator = ','): string[] {
|
||||
if (!configValue) {
|
||||
return [];
|
||||
|
@ -87,3 +89,27 @@ export function replaceAuthErrorsWithEnvironmentVariables(
|
|||
message = message.replace('.accessRole', '_ACCESS_ROLE');
|
||||
return message;
|
||||
}
|
||||
|
||||
export function needToLog(
|
||||
currentLoglevel: Loglevel,
|
||||
requestedLoglevel: Loglevel,
|
||||
): boolean {
|
||||
const current = transformLoglevelToInt(currentLoglevel);
|
||||
const requested = transformLoglevelToInt(requestedLoglevel);
|
||||
return current >= requested;
|
||||
}
|
||||
|
||||
function transformLoglevelToInt(loglevel: Loglevel): number {
|
||||
switch (loglevel) {
|
||||
case Loglevel.TRACE:
|
||||
return 5;
|
||||
case Loglevel.DEBUG:
|
||||
return 4;
|
||||
case Loglevel.INFO:
|
||||
return 3;
|
||||
case Loglevel.WARN:
|
||||
return 2;
|
||||
case Loglevel.ERROR:
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue