Files
Jellycleanarr/run_with_logging.py
2026-02-12 00:05:42 -05:00

15 lines
349 B
Python

"""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")