X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftypes%2FConfigurationData.ts;h=a23940cf330295cb609f28b7a3439ee05e26f6f6;hb=178956d8c51c6a2b4ecc55b592dfb9ee339b8105;hp=5a6853d22fd1853f714df96b06ad270d57d58c04;hpb=0ac97927984473fcb11a177f013b0e112638e050;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ConfigurationData.ts b/src/types/ConfigurationData.ts index 5a6853d2..a23940cf 100644 --- a/src/types/ConfigurationData.ts +++ b/src/types/ConfigurationData.ts @@ -2,7 +2,8 @@ import type { ListenOptions } from 'node:net'; import type { WorkerChoiceStrategy } from 'poolifier'; -import type { ApplicationProtocol, AuthenticationType, StorageType } from './internal'; +import type { StorageType } from './Storage'; +import type { ApplicationProtocol, AuthenticationType } from './UIProtocol'; import type { WorkerProcessType } from '../worker'; type ServerOptions = ListenOptions; @@ -69,6 +70,8 @@ export type ConfigurationData = { /** @deprecated Moved to worker configuration section. */ chargingStationsPerWorker?: number; logStatisticsInterval?: number; + logEnabled?: boolean; + logConsole?: boolean; logFormat?: string; logLevel?: string; logRotate?: boolean; @@ -76,5 +79,4 @@ export type ConfigurationData = { logMaxSize?: number | string; logFile?: string; logErrorFile?: string; - logConsole?: boolean; };