Browse Source

Errors with plugin prefs are app errors.

Change-Id: I310816277a7e4891df193f8f98e727c56ff56129
Reviewed-on: http://gerrit.dmdirc.com/3144
Automatic-Compile: DMDirc Build Manager
Reviewed-by: Greg Holmes <greg@dmdirc.com>
tags/0.8rc1
Chris Smith 10 years ago
parent
commit
8b8dd6e23b
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/com/dmdirc/plugins/PluginManager.java

+ 3
- 3
src/com/dmdirc/plugins/PluginManager.java View File

@@ -584,9 +584,9 @@ public class PluginManager implements ActionListener, ServiceManager {
584 584
                     try {
585 585
                         pi.getPlugin().showConfig((PreferencesDialogModel) arguments[0]);
586 586
                     } catch (LinkageError | Exception le) {
587
-                        Logger.userError(ErrorLevel.MEDIUM,
588
-                                "Error with plugin (" + pi.getMetaData().getFriendlyName()
589
-                                + "), unable to show config (" + le + ")", le);
587
+                        Logger.appError(ErrorLevel.MEDIUM,
588
+                                "Unable to show plugin configuration for "
589
+                                + pi.getMetaData().getFriendlyName(), le);
590 590
                     }
591 591
                 }
592 592
             }

Loading…
Cancel
Save