Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fusion44/nixblitz


https://github.com/fusion44/nixblitz

Last synced: about 2 months ago
JSON representation

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`