Skip to content

Commit

Permalink
Verbose is now the default loglevel (to see state changes in relati…
Browse files Browse the repository at this point in the history
…ve actions)
  • Loading branch information
garciadelcastillo committed Nov 19, 2018
1 parent aeb9012 commit 35e2842
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/MachinaBridge/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -410,8 +410,8 @@
<ComboBoxItem Content="0 - NONE" Tag="0"/>
<ComboBoxItem Content="1 - ERROR" Tag="1"/>
<ComboBoxItem Content="2 - WARNING" Tag="2"/>
<ComboBoxItem IsSelected="True" Content="3 - INFO" Tag="3"/>
<ComboBoxItem Content="4 - VERBOSE" Tag="4"/>
<ComboBoxItem Content="3 - INFO" Tag="3"/>
<ComboBoxItem IsSelected="True" Content="4 - VERBOSE" Tag="4"/>
<ComboBoxItem Content="5 - DEBUG" Tag="5"/>
</ComboBox>

Expand Down
2 changes: 1 addition & 1 deletion src/MachinaBridge/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public MachinaBridgeWindow()

uiContext = SynchronizationContext.Current;

_maxLogLevel = Machina.LogLevel.INFO;
_maxLogLevel = Machina.LogLevel.VERBOSE;
Logger.CustomLogging += Logger_CustomLogging;

Logger.Info("Machina Bridge: " + Version + "; Core: " + Robot.Version);
Expand Down

0 comments on commit 35e2842

Please sign in to comment.