Skip to content

Commit

Permalink
Decrease loglevel to WARN for scanning exceptions.
Browse files Browse the repository at this point in the history
Closes #270
  • Loading branch information
shlomii committed Apr 4, 2012
1 parent 3086579 commit 2ba6abc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/NServiceBus.Config/Configure.cs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public static Configure With(params Assembly[] assemblies)
foreach (var ex in e.LoaderExceptions)
sb.Append(Environment.NewLine + ex.Message);
}
LogManager.GetLogger(typeof (Configure)).Error(sb.ToString());
LogManager.GetLogger(typeof (Configure)).Warn(sb.ToString());
return;//intentionally swallow exception
}
});
Expand Down

0 comments on commit 2ba6abc

Please sign in to comment.