Skip to content

Commit 46cf3e6

Browse files
authored
Merge pull request #2034 from Hosch250/codeExplorerCommandFix
Use error logging
2 parents 02fc75a + c0de2e0 commit 46cf3e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RetailCoder.VBE/UI/Command/CommandBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public bool CanExecute(object parameter)
3737
}
3838
catch (Exception exception)
3939
{
40-
Logger.Fatal(exception);
40+
Logger.Error(exception);
4141

4242
if (!ExceptionTargetSites.Contains(exception.TargetSite))
4343
{
@@ -61,7 +61,7 @@ public void Execute(object parameter)
6161
}
6262
catch (Exception exception)
6363
{
64-
Logger.Fatal(exception);
64+
Logger.Error(exception);
6565

6666
if (!ExceptionTargetSites.Contains(exception.TargetSite))
6767
{

0 commit comments

Comments
 (0)