How to submit an issue
Submitting an issue
To help us diagnose and resolve problems efficiently, please follow the process below when submitting an issue.
1. Enable debug logging
Before reproducing the issue, set the log level of all relevant components to DEBUG
.
This ensures we capture the necessary details for troubleshooting.
Here is how you can do it in each component
core: use
--log-level debug
option or setDEFGUARD_LOG_LEVEL
environment variable todebug
gateway: use
--log-level debug
option or setDEFGUARD_LOG_LEVEL
environment variable todebug
proxy: use
--log-level debug
option or setDEFGUARD_PROXY_LOG_LEVEL
environment variable todebug
client: use
--log-level debug
option or setDEFGUARD_LOG_LEVEL
environment variable todebug
2. Reproduce the problem
Reproduce the issue while DEBUG
logging is enabled.
The logs will automatically include:
Application version
Operating system information
3. Collect logs and screenshots
After reproducing the issue, gather logs from all relevant components. Make sure to include all of them in your report.
For UI components, also take screenshots if the issue affects layout, design, or visual behavior.
4. Provide steps to reproduce
In addition to logs, clearly describe how the issue can be reproduced. Include:
Exact steps you took
Expected behavior
Actual behavior
5. Submit your report
Go to Defguard issues page and open a new issue. Select appropriate category, whether it's a "Bug report", "Feature request" or a "Security vulnerability". When opening an issue, attach:
Logs from all components
Clear reproduction steps
Any additional context you think may help (environment details, configuration snippets, etc.)
Example submission
You'll find example issue submission here.
Last updated
Was this helpful?