1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-14 00:19:16 +01:00

feat: remove excessing debug logging (#8701)

This debugger has been spamming me locally and I think this was
forgotten during some development. Removing.
This commit is contained in:
Jaanus Sellin 2024-11-08 14:57:26 +02:00 committed by GitHub
parent f92441fa50
commit 961501567c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,7 +45,6 @@ export default class MaintenanceService implements IMaintenanceStatus {
} }
async getMaintenanceSetting(): Promise<MaintenanceSchema> { async getMaintenanceSetting(): Promise<MaintenanceSchema> {
this.logger.debug('getMaintenanceSetting called');
return this.settingService.getWithDefault(maintenanceSettingsKey, { return this.settingService.getWithDefault(maintenanceSettingsKey, {
enabled: false, enabled: false,
}); });