remove unused (and broken) logger.verbose config option

This commit is contained in:
Hazelnoot 2025-10-08 17:09:44 -04:00
parent f63a2578cc
commit 9b843181f8
5 changed files with 0 additions and 15 deletions

View file

@ -374,9 +374,6 @@ attachLdSignatureForRelays: true
# # Disable query truncation. If set to true, the full text of the query will be output to the log. # # Disable query truncation. If set to true, the full text of the query will be output to the log.
# # default: false # # default: false
# disableQueryTruncation: false # disableQueryTruncation: false
# # Shows debug log messages after instance startup. To capture earlier debug logs, set the MK_VERBOSE environment variable.
# # default: false in production, true otherwise.
# #verbose: false
# Settings for the activity logger, which records inbound activities to the database. # Settings for the activity logger, which records inbound activities to the database.
# Disabled by default due to the large volume of data it saves. # Disabled by default due to the large volume of data it saves.

View file

@ -325,9 +325,6 @@ allowedPrivateNetworks:
# # Disable query truncation. If set to true, the full text of the query will be output to the log. # # Disable query truncation. If set to true, the full text of the query will be output to the log.
# # default: false # # default: false
# disableQueryTruncation: false # disableQueryTruncation: false
# # Shows debug log messages after instance startup. To capture earlier debug logs, set the MK_VERBOSE environment variable.
# # default: false in production, true otherwise.
# #verbose: false
# Settings for the activity logger, which records inbound activities to the database. # Settings for the activity logger, which records inbound activities to the database.
# Disabled by default due to the large volume of data it saves. # Disabled by default due to the large volume of data it saves.

View file

@ -442,9 +442,6 @@ attachLdSignatureForRelays: true
# # Disable query truncation. If set to true, the full text of the query will be output to the log. # # Disable query truncation. If set to true, the full text of the query will be output to the log.
# # default: false # # default: false
# disableQueryTruncation: false # disableQueryTruncation: false
# # Shows debug log messages after instance startup. To capture earlier debug logs, set the MK_VERBOSE environment variable.
# # default: false in production, true otherwise.
# #verbose: false
# Settings for the activity logger, which records inbound activities to the database. # Settings for the activity logger, which records inbound activities to the database.
# Disabled by default due to the large volume of data it saves. # Disabled by default due to the large volume of data it saves.

View file

@ -448,9 +448,6 @@ attachLdSignatureForRelays: true
# # Disable query truncation. If set to true, the full text of the query will be output to the log. # # Disable query truncation. If set to true, the full text of the query will be output to the log.
# # default: false # # default: false
# disableQueryTruncation: false # disableQueryTruncation: false
# # Shows debug log messages after instance startup. To capture earlier debug logs, set the MK_VERBOSE environment variable.
# # default: false in production, true otherwise.
# #verbose: false
# Settings for the activity logger, which records inbound activities to the database. # Settings for the activity logger, which records inbound activities to the database.
# Disabled by default due to the large volume of data it saves. # Disabled by default due to the large volume of data it saves.

View file

@ -144,7 +144,6 @@ type Source = {
disableQueryTruncation?: boolean, disableQueryTruncation?: boolean,
enableQueryParamLogging?: boolean, enableQueryParamLogging?: boolean,
}; };
verbose?: boolean;
} }
activityLogging?: { activityLogging?: {
@ -290,7 +289,6 @@ export type Config = {
disableQueryTruncation?: boolean, disableQueryTruncation?: boolean,
enableQueryParamLogging?: boolean, enableQueryParamLogging?: boolean,
}; };
verbose?: boolean;
} }
version: string; version: string;
@ -671,7 +669,6 @@ function applyEnvOverrides(config: Source) {
_apply_top(['import', ['downloadTimeout', 'maxFileSize']]); _apply_top(['import', ['downloadTimeout', 'maxFileSize']]);
_apply_top([['signToActivityPubGet', 'checkActivityPubGetSignature', 'setupPassword', 'disallowExternalApRedirect']]); _apply_top([['signToActivityPubGet', 'checkActivityPubGetSignature', 'setupPassword', 'disallowExternalApRedirect']]);
_apply_top(['logging', 'sql', ['disableQueryTruncation', 'enableQueryParamLogging']]); _apply_top(['logging', 'sql', ['disableQueryTruncation', 'enableQueryParamLogging']]);
_apply_top(['logging', ['verbose']]);
_apply_top(['activityLogging', ['enabled', 'preSave', 'maxAge']]); _apply_top(['activityLogging', ['enabled', 'preSave', 'maxAge']]);
_apply_top(['customHtml', ['head']]); _apply_top(['customHtml', ['head']]);
} }