diff options
| author | Sophie Forrest <git@sophieforrest.com> | 2024-10-05 00:22:00 +1300 |
|---|---|---|
| committer | Sophie Forrest <git@sophieforrest.com> | 2024-10-05 00:22:00 +1300 |
| commit | 48ac2fa41c8da78cc4c26a5175476b972f1663da (patch) | |
| tree | 9c6770c20f991d21743c16dcc11bc1b26364a158 /src/main.rs | |
| parent | f6afe603e76e92413b875478ac1eb9fc9a2012d8 (diff) | |
feat: implement logging in cpu
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 430d522..7f6df89 100644 --- a/src/main.rs +++ b/src/main.rs @@ -18,7 +18,7 @@ use memory::Memory; fn main() { tracing_subscriber::fmt() - .with_max_level(LevelFilter::INFO) + .with_max_level(LevelFilter::TRACE) .init(); let mut cpu = Cpu::new(); |