Skip to content

Commit 49597a1

Browse files
committed
Duplicate logging configuration section removed.
1 parent e849b2b commit 49597a1

1 file changed

Lines changed: 0 additions & 29 deletions

File tree

webui/src/Config.jsx

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -391,35 +391,6 @@ class Config extends Component {
391391
</th>
392392
</tr>
393393
</tbody></table>
394-
{this.state.isConfigLoading ? <Loader/> : <h3>Logging Config</h3>}
395-
<table><tbody>
396-
<tr>
397-
<th align="left"> <label>Syslog protocol</label> </th>
398-
<th align="left">
399-
<select value={this.state.syslogProto} onChange={e => this.setState({syslogProto: e.target.value})}>
400-
<option value="none">none</option>
401-
<option value="">local</option>
402-
<option value="udp">UDP server</option>
403-
</select>
404-
</th>
405-
</tr>
406-
<tr>
407-
<th align="left"> <label>Syslog server</label> </th>
408-
<th align="left"> <input value={this.state.syslogServer} onChange={e => this.setState({syslogServer: e.target.value, syslogServerErr: !e.currentTarget.checkValidity()})} disabled={this.state.syslogProto === 'udp' ? undefined : true} /> </th>
409-
</tr>
410-
<tr>
411-
<th align="left"> <label>Log severity</label> </th>
412-
<th align="left">
413-
<select value={this.state.logSeverity} onChange={e => this.setState({logSeverity: e.target.value})}>
414-
<option value="1">debug</option>
415-
<option value="2">info</option>
416-
<option value="3">warning</option>
417-
<option value="4">error</option>
418-
<option value="5">fatal</option>
419-
</select>
420-
</th>
421-
</tr>
422-
</tbody></table>
423394
<br/>
424395
<table><tbody>
425396
<tr>

0 commit comments

Comments
 (0)