updates
This commit is contained in:
14
run_with_logging.py
Normal file
14
run_with_logging.py
Normal file
@@ -0,0 +1,14 @@
|
||||
"""Run the app with logging enabled."""
|
||||
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
# Add src to path
|
||||
sys.path.insert(0, str(Path(__file__).parent / "src"))
|
||||
|
||||
from jellycleanarr.ui.app import JellycleanApp
|
||||
|
||||
if __name__ == "__main__":
|
||||
app = JellycleanApp()
|
||||
# Run with logging (logs go to textual.log by default)
|
||||
app.run(log="textual_debug.log")
|
||||
Reference in New Issue
Block a user