Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: LargeModGames/spotatui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.36.2
Choose a base ref
...
head repository: LargeModGames/spotatui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.36.3-debug.1
Choose a head ref
  • 3 commits
  • 6 files changed
  • 3 contributors

Commits on Feb 16, 2026

  1. Implement new logging system

    - Implemented system that logs into /tmp/spotatui_logs/spotatuilog{PID}
    	- PID is your process ID
    	- TUI will indicate file location on start (when you call cargo run, or spotatui)
    - use fern for formatting log messages, and log for the logging itself.
    - in main.rs: replaced various println!() and eprintln!() statements with info!() and error!()
    - in app.rs: added info!() logs statements to indicate certain events were hapenning (like changing volume)
    AFE123xr committed Feb 16, 2026
    Configuration menu
    Copy the full SHA
    925bd64 View commit details
    Browse the repository at this point in the history
  2. Implement new logging system (#102)

    # Summary
    
    I modified spotatui to use log and fern for logging. Instead of waiting
    for panics to occur, you can watch the logs in
    `/tmp/spotatui_logs/spotatuilog{PID}` while using spotatui
    
    closes #103 
    
    # Testing
    
    You can run spotatui, and run `tail -f /tmp/spotatui_logs/{PID}` while
    running spotatui. PID is the Process ID of the current spotatui session.
    You can also check the file with less and use grep to isolate errors.
    
    # Additional notes
    
    <img width="1728" height="264" alt="image"
    src="https://github.com/user-attachments/assets/7ec0f838-c0a3-4321-ae9f-5c50f16a3c73"
    />
    
    I'm watching the logs while running spotatui.
    LargeModGames authored Feb 16, 2026
    Configuration menu
    Copy the full SHA
    7a4e02f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    001e635 View commit details
    Browse the repository at this point in the history
Loading