Changed log level for browser.
This commit is contained in:
parent
eb5fc50fea
commit
45dd741e4c
3 changed files with 4 additions and 3 deletions
|
@ -102,8 +102,8 @@ namespace SafeExamBrowser.Browser
|
||||||
{
|
{
|
||||||
CachePath = runtimeInfo.BrowserCachePath,
|
CachePath = runtimeInfo.BrowserCachePath,
|
||||||
LogFile = runtimeInfo.BrowserLogFile,
|
LogFile = runtimeInfo.BrowserLogFile,
|
||||||
// TODO: Set according to current application LogLevel!
|
// TODO: Set according to current application LogLevel, but avoid verbose!
|
||||||
LogSeverity = LogSeverity.Verbose
|
LogSeverity = LogSeverity.Info
|
||||||
};
|
};
|
||||||
|
|
||||||
cefSettings.RegisterScheme(new CefCustomScheme { SchemeName = "seb", SchemeHandlerFactory = new SchemeHandlerFactory() });
|
cefSettings.RegisterScheme(new CefCustomScheme { SchemeName = "seb", SchemeHandlerFactory = new SchemeHandlerFactory() });
|
||||||
|
|
|
@ -56,6 +56,7 @@ namespace SafeExamBrowser.Core.UnitTests.Communication.Hosts
|
||||||
[ExpectedException(typeof(CommunicationException))]
|
[ExpectedException(typeof(CommunicationException))]
|
||||||
public void MustCorrectlyHandleStartupException()
|
public void MustCorrectlyHandleStartupException()
|
||||||
{
|
{
|
||||||
|
// TODO: Takes waaay too long, extract timeout (move to constructor like in ClientOperation)!
|
||||||
hostObject.Setup(h => h.Open()).Throws<Exception>();
|
hostObject.Setup(h => h.Open()).Throws<Exception>();
|
||||||
|
|
||||||
sut.Start();
|
sut.Start();
|
||||||
|
|
Loading…
Add table
Reference in a new issue