Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fusion44/nixblitz
https://github.com/fusion44/nixblitz
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fusion44/nixblitz
- Owner: fusion44
- License: mit
- Created: 2024-06-10T17:05:42.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-10-31T19:21:42.000Z (2 months ago)
- Last Synced: 2024-10-31T20:24:27.238Z (2 months ago)
- Language: Rust
- Size: 381 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nixblitz
### FAQ
#### Where to find logs in TUI mode?
In TUI mode, no error messages are printed to stdout. This would would interfere
with the UI drawing process. Instead, it the log will be written
to a file called `nixblitz.log` in the working directory.
This behavior is **off** by default.The CLI uses [cli-log](https://crates.io/crates/cli-log) to log
to the file. To enable logging, the `NIXBLITZ_LOG` env variable
must to be set.A convenient way to set the env variable is to start the app as
- bash `NIXBLITZ_LOG=debug nixblitz gui`
- nushell `$env.NIXBLITZ_LOG = debug; nixblitz gui`or, during development,
- bash `NIXBLITZ_LOG=debug cargo run gui`
- nushell `$env.NIXBLITZ_LOG = debug; cargo run gui`