mirror of
https://github.com/openai/codex.git
synced 2026-03-05 21:45:28 +03:00
Replaced user documentation with links to developers docs site (#8662)
This eliminates redundant user documentation and allows us to focus our documentation investments. I left tombstone files for most of the existing ".md" docs files to avoid broken links. These now contain brief links to the developers docs site.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
## Install & build
|
||||
## Installing & building
|
||||
|
||||
### System requirements
|
||||
|
||||
@@ -46,3 +46,17 @@ just test
|
||||
# Otherwise, fall back to:
|
||||
cargo test --all-features
|
||||
```
|
||||
|
||||
## Tracing / verbose logging
|
||||
|
||||
Codex is written in Rust, so it honors the `RUST_LOG` environment variable to configure its logging behavior.
|
||||
|
||||
The TUI defaults to `RUST_LOG=codex_core=info,codex_tui=info,codex_rmcp_client=info` and log messages are written to `~/.codex/log/codex-tui.log`, so you can leave the following running in a separate terminal to monitor log messages as they are written:
|
||||
|
||||
```bash
|
||||
tail -F ~/.codex/log/codex-tui.log
|
||||
```
|
||||
|
||||
By comparison, the non-interactive mode (`codex exec`) defaults to `RUST_LOG=error`, but messages are printed inline, so there is no need to monitor a separate file.
|
||||
|
||||
See the Rust documentation on [`RUST_LOG`](https://docs.rs/env_logger/latest/env_logger/#enabling-logging) for more information on the configuration options.
|
||||
|
||||
Reference in New Issue
Block a user