Removed the trace option from the UI, it is only accessible when appending the url with "?developer" #753

This commit is contained in:
Jamie.Rees 2016-12-09 13:41:05 +00:00
commit 662588b709
2 changed files with 8 additions and 2 deletions

View file

@ -21,7 +21,10 @@
<label for="logLevel" class="control-label">Log Level</label>
<div id="logLevel">
<select class="form-control" id="selected">
<option id="Trace" value="0">Trace</option>
@if (Model)
{
<option id="Trace" value="0">Trace</option>
}
<option id="Debug" value="1">Debug</option>
<option id="Info" value="2">Info</option>
<option id="Warn" value="3">Warn</option>