Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ CHANGELOG
### Configuration
- Sort bots alphabetically in side menu (PR#298 by Psych0meter).

### Monitor
- Default log level is now INFO, consistent with `intelmqctl log`, removed level `ALL` equivalent to `DEBUG` (PR#308 by Sebastian Wagner)

3.3.0 (2024-03-01)
------------------

Expand Down
6 changes: 3 additions & 3 deletions intelmq_manager/templates/monitor.mako
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@
<h4 id="logs-panel-title">Logs</h4>
</div>
<div class="panel-body">
<div class="panel-div">Log Level: <select id="log-level-indicator">
<option value="ALL">All</option>
<div class="panel-div">Log Level:
<select id="log-level-indicator">
<option value="DEBUG">Debug</option>
<option value="INFO">Info</option>
<option value="INFO" selected>Info</option>
<option value="WARNING">Warning</option>
<option value="ERROR">Error</option>
<option value="CRITICAL">Critical</option>
Expand Down
Loading