- Migrate to `electron-log` v5.X.X, centralizing log files to adhere to best-practices. - Add critical event logging in the log file. - Replace `ElectronLog` type with `LogFunctions` for better abstraction. - Unify log handling in `desktop-runtime-error` by removing `renderer.log` due to `electron-log` v5 changes. - Update and extend logger interfaces, removing 'I' prefix and adding common log levels to abstract `electron-log` completely. - Move logger interfaces to the application layer as it's cross-cutting concern, meanwhile keeping the implementations in the infrastructure layer. - Introduce `useLogger` hook for easier logging in Vue components. - Simplify `WindowVariables` by removing nullable properties. - Improve documentation to clearly differentiate between desktop and web versions, outlining specific features of each.
26 lines
1.0 KiB
TypeScript
26 lines
1.0 KiB
TypeScript
import { RuntimeEnvironment } from '@/infrastructure/RuntimeEnvironment/RuntimeEnvironment';
|
|
import { IRuntimeEnvironment } from '@/infrastructure/RuntimeEnvironment/IRuntimeEnvironment';
|
|
import { ConsoleLogger } from '@/infrastructure/Log/ConsoleLogger';
|
|
import { Logger } from '@/application/Common/Log/Logger';
|
|
import { LoggerFactory } from '@/application/Common/Log/LoggerFactory';
|
|
import { NoopLogger } from '@/infrastructure/Log/NoopLogger';
|
|
import { WindowInjectedLogger } from '@/infrastructure/Log/WindowInjectedLogger';
|
|
|
|
export class ClientLoggerFactory implements LoggerFactory {
|
|
public static readonly Current: LoggerFactory = new ClientLoggerFactory();
|
|
|
|
public readonly logger: Logger;
|
|
|
|
protected constructor(environment: IRuntimeEnvironment = RuntimeEnvironment.CurrentEnvironment) {
|
|
if (environment.isDesktop) {
|
|
this.logger = new WindowInjectedLogger();
|
|
return;
|
|
}
|
|
if (environment.isNonProduction) {
|
|
this.logger = new ConsoleLogger();
|
|
return;
|
|
}
|
|
this.logger = new NoopLogger();
|
|
}
|
|
}
|