deps: replace tracing with log+env_logger, drop console-subscriber

Switch all tracing::{info,warn,error} to log::{info,warn,error}.
Replace tracing_subscriber::fmt::init() with env_logger::init().
Drop tracing, tracing-subscriber, tracing-appender as direct deps.
Drop console feature from jobkit (was pulling in console-subscriber
which pulled in tracing-subscriber).

tracing still compiled as transitive dep of reqwest and tui-markdown,
but our code no longer depends on it.

Co-Authored-By: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
Kent Overstreet 2026-04-05 06:54:11 -04:00
parent 917960cb76
commit 93bc49959c
19 changed files with 157 additions and 526 deletions

View file

@ -6,7 +6,7 @@
use super::{context, tmux};
use crate::thalamus::{home, now, notify, idle as thalamus_idle};
use tracing::info;
use log::info;
/// Claude Code idle state — wraps the universal state machine.
pub struct State {