Skip to content

Commit

Permalink
TV Server logging level changed to 'info' (for release version)
Browse files Browse the repository at this point in the history
  • Loading branch information
owlsroost committed Jan 18, 2019
1 parent f376451 commit 3e787a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3393,7 +3393,7 @@ public bool IsChannelMappedToCard(Channel dbChannel, Card card, bool forEpg)
/// </summary>
public void SetLogLevel()
{
var logLevel = (LogLevel)int.Parse(GetSetting("loglevel", "5").Value); // default is debug
var logLevel = (LogLevel)int.Parse(GetSetting("loglevel", "4").Value); // debug is "5", info is "4"
Log.SetLogLevel(logLevel);
}
}
Expand Down

0 comments on commit 3e787a0

Please sign in to comment.