Troubleshooting / Bug Reporting
If you experience any bugs, we're happy to help as fast as possible! Please provide these details when reporting an issue:
- Example Code that reproduces the Issue.
- What you expected to happen.
- What happened instead.
- Logs: You can increase log verbosity using the
set_log_level
function at the beginning of your script. Default level is 'INFO'.
- Python
- C
import denkflow
denkflow.set_log_level("DEBUG") # Or "TRACE" for maximum detail. Careful: TRACE output might include sensitive information.
# ... the rest of your script
#include "denkflow.h"
std::string log_level = "INFO";
DenkflowResult r = set_log_level(log_level.c_str());
// ... the rest of your script
- Enable onnxruntime logs by setting env var
DENKFLOW_ENABLE_ORT_LOGS=true
before running your application. These logs might contain valuable information. - System Information (Operating System, CPU Model, Memory, GPU Model if applicable).
We are actively developing Denkflow and welcome feature requests! Please feel free to report missing features or suggest improvements through the same channels you use for bug reporting.