mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-04-05 12:49:40 +00:00
fix: make logger in BaseUrlFromEnvExtractor readonly
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
9771ffcf00
commit
312d1adf6f
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
||||
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
||||
*
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
@ -14,7 +14,7 @@ import { Optional } from '@mrdrogdrog/optional'
|
|||
*/
|
||||
export class BaseUrlFromEnvExtractor {
|
||||
private baseUrls: Optional<BaseUrls> | undefined
|
||||
private logger = new Logger('Base URL Configuration')
|
||||
private readonly logger = new Logger('Base URL Configuration')
|
||||
|
||||
private extractUrlFromEnvVar(envVarName: string, envVarValue: string | undefined): Optional<URL> {
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue