Changeset 6313 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2013-10-07T13:48:08+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r6282 r6313 687 687 return null; 688 688 } catch(InterruptedException e) { 689 e.printStackTrace();689 Main.warn("InterruptedException in "+PluginHandler.class.getSimpleName()+" while loading locally available plugin information"); 690 690 return null; 691 691 } … … 858 858 plugins = buildListOfPluginsToLoad(parent,monitor.createSubTaskMonitor(1, false)); 859 859 } catch (ExecutionException e) { 860 Main.warn(tr("Failed to download plugin information list") );860 Main.warn(tr("Failed to download plugin information list")+": ExecutionException"); 861 861 e.printStackTrace(); 862 862 // don't abort in case of error, continue with downloading plugins below 863 863 } catch (InterruptedException e) { 864 Main.warn(tr("Failed to download plugin information list")); 865 e.printStackTrace(); 864 Main.warn(tr("Failed to download plugin information list")+": InterruptedException"); 866 865 // don't abort in case of error, continue with downloading plugins below 867 866 } … … 911 910 return plugins; 912 911 } catch(InterruptedException e) { 913 e.printStackTrace();912 Main.warn("InterruptedException in "+PluginHandler.class.getSimpleName()+" while updating plugins"); 914 913 alertFailedPluginUpdate(parent, pluginsToUpdate); 915 914 return plugins;
Note: See TracChangeset
for help on using the changeset viewer.