diff --git a/src/MatroskaBatchFlow.Core/Logging/CoreLogEvents.cs b/src/MatroskaBatchFlow.Core/Logging/CoreLogEvents.cs deleted file mode 100644 index 6288a10..0000000 --- a/src/MatroskaBatchFlow.Core/Logging/CoreLogEvents.cs +++ /dev/null @@ -1,64 +0,0 @@ -namespace MatroskaBatchFlow.Core.Logging; - -/// -/// Centralized EventId constants for Core library logging. -/// Ranges: -/// - 1000-1199: Configuration (LanguageProvider, etc.) -/// - 1200-1399: File Scanning -/// - 2000-2399: Validation -/// - 4000-4599: Processing Orchestration -/// - 4600-4799: Tool Execution (MkvPropeditExecutor, ProcessRunner) -/// -internal static class CoreLogEvents -{ - /// - /// Configuration-related events (1000-1199). - /// - internal static class Configuration - { - /// Language file not found, using fallback. - public const int LanguageFileNotFound = 1001; - - /// Failed to load language data from file. - public const int LanguageLoadFailed = 1002; - } - - /// - /// Validation events (2000-2399). - /// - internal static class Validation - { - /// Validation found an error for a file. - public const int ValidationError = 2001; - - /// Validation found a warning for a file. - public const int ValidationWarning = 2002; - } - - /// - /// Processing orchestration events (4000-4599). - /// - internal static class Processing - { - /// mkvpropedit execution failed for a file. - public const int MkvpropeditFailed = 4001; - - /// Unexpected error during file processing. - public const int UnexpectedProcessingError = 4002; - } - - /// - /// External tool execution events (4600-4799). - /// - internal static class ToolExecution - { - /// Failed to resolve mkvpropedit executable path. - public const int ExecutableResolutionFailed = 4601; - - /// Exception occurred during mkvpropedit execution. - public const int MkvpropeditExecutionException = 4602; - - /// Failed to start external process. - public const int ProcessStartFailed = 4603; - } -} diff --git a/src/MatroskaBatchFlow.Uno/Logging/UnoLogEvents.cs b/src/MatroskaBatchFlow.Uno/Logging/UnoLogEvents.cs deleted file mode 100644 index d0cbd50..0000000 --- a/src/MatroskaBatchFlow.Uno/Logging/UnoLogEvents.cs +++ /dev/null @@ -1,76 +0,0 @@ -namespace MatroskaBatchFlow.Uno.Logging; - -/// -/// Centralized EventId constants for Uno application logging. -/// Ranges: -/// - 8000-8099: App Lifecycle (Activation) -/// - 8100-8199: Navigation -/// - 8500-8599: ViewModels (Batch) -/// - 8600-8699: Error Dialog -/// - 8700-8899: Settings & Persistence -/// -internal static class UnoLogEvents -{ - /// - /// App lifecycle events (8000-8099). - /// - internal static class AppLifecycle - { - /// Application has started with diagnostic information. - public const int ApplicationStarted = 8000; - - /// An unhandled exception occurred in the application. - public const int UnhandledExceptionOccurred = 8001; - } - - /// - /// Navigation events (8100-8199). - /// - internal static class Navigation - { - /// Navigating to a page. - public const int NavigatingTo = 8100; - } - - /// - /// Batch processing events from MainViewModel (8500-8599). - /// - internal static class Batch - { - /// Batch processing was aborted due to validation or precondition failure. - public const int BatchAborted = 8501; - - /// Unexpected error during batch processing. - public const int BatchProcessingError = 8502; - } - - /// - /// Error dialog events (8600-8699). - /// - internal static class ErrorDialog - { - /// Exception details were copied to clipboard. - public const int DetailsCopied = 8601; - - /// Exception log was saved to file. - public const int LogSaved = 8602; - - /// Failed to save exception log file. - public const int SaveLogFailed = 8603; - } - - /// - /// Settings persistence events (8700-8799). - /// - internal static class Settings - { - /// Failed to deserialize settings from JSON file. - public const int DeserializationFailed = 8701; - - /// Exception occurred while loading settings. - public const int LoadFailed = 8702; - - /// Failed to save a settings value. - public const int SaveFailed = 8703; - } -}