2018-11-25 14:46:04 -05:00
|
|
|
i2pkeys
|
|
|
|
=======
|
|
|
|
|
|
|
|
Generates and displays the contents of files that are storing i2p keys in the
|
|
|
|
incompatible format used for sam3
|
2024-10-17 14:38:35 -04:00
|
|
|
|
2024-11-14 10:37:32 -05:00
|
|
|
[](https://goreportcard.com/report/github.com/go-i2p/i2pkeys)
|
2024-11-14 10:36:36 -05:00
|
|
|
|
2024-10-17 14:42:38 -04:00
|
|
|
## Verbosity ##
|
2024-10-17 14:38:35 -04:00
|
|
|
Logging can be enabled and configured using the DEBUG_I2P environment variable. By default, logging is disabled.
|
|
|
|
|
|
|
|
There are three available log levels:
|
|
|
|
|
|
|
|
- Debug
|
|
|
|
```shell
|
|
|
|
export DEBUG_I2P=debug
|
|
|
|
```
|
|
|
|
- Warn
|
|
|
|
```shell
|
|
|
|
export DEBUG_I2P=warn
|
|
|
|
```
|
|
|
|
- Error
|
|
|
|
```shell
|
|
|
|
export DEBUG_I2P=error
|
|
|
|
```
|
|
|
|
|
2024-11-02 19:42:22 -04:00
|
|
|
If DEBUG_I2P is set to an unrecognized variable, it will fall back to "debug".
|