DebugAppDirService constructor
- AppDirService appDirService
DebugAppDirService is a specialized version of AppDirService that is designed for debugging purposes.
It wraps an existing AppDirService instance and modifies its behavior to create a /debug
subdirectory
within the application directory.
This is useful for segregating debug-related files from the main application directory, making it easier to manage files during debugging.
Takes an AppDirService instance as an argument, which this class will wrap and modify.
Example:
var originalService = AppDirService();
var debugService = DebugAppDirService(originalService);
Implementation
DebugAppDirService