--- slug: /1230/better-logs displayed_sidebar: '0.2' --- # How can I have better logs ? Dagger exposes 2 logging format options: - `--log-format ` The default mode is `auto`. If you want to keep each actions' logs, use the `plain` mode - `--log-level ` `debug` is useful to check whether an explicit dependency has been found between two actions and see CUE DAG at run time. You can also export these options as env variables: ```console export DAGGER_LOG_FORMAT="plain" export DAGGER_LOG_LEVEL="debug" ```