Ignore:
Timestamp:
2014-01-06T16:39:45+01:00 (11 years ago)
Author:
Don-vip
Message:

global replacement of e.printStackTrace() by Main.error(e)

Location:
trunk/src/org/openstreetmap/josm/plugins
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java

    r6248 r6643  
    163163                download(d, pluginFile);
    164164            } catch(PluginDownloadException e) {
    165                 e.printStackTrace();
     165                Main.error(e);
    166166                failed.add(d);
    167167                continue;
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r6615 r6643  
    560560            msg = null;
    561561        } catch (PluginException e) {
    562             Main.error(e.getMessage());
    563             Throwable cause = e.getCause();
    564             if (cause != null) {
    565                 msg = cause.getLocalizedMessage();
    566                 if (msg != null) {
    567                     Main.error("Cause: " + cause.getClass().getName()+": " + msg);
    568                 } else {
    569                     cause.printStackTrace();
    570                 }
    571             }
     562            Main.error(e);
    572563            if (e.getCause() instanceof ClassNotFoundException) {
    573564                msg = tr("<html>Could not load plugin {0} because the plugin<br>main class ''{1}'' was not found.<br>"
     
    575566            }
    576567        }  catch (Throwable e) {
    577             e.printStackTrace();
     568            Main.error(e);
    578569        }
    579570        if (msg != null && confirmDisablePlugin(parent, msg, plugin.name)) {
     
    687678                future.get();
    688679            } catch(ExecutionException e) {
    689                 e.printStackTrace();
     680                Main.error(e);
    690681                return null;
    691682            } catch(InterruptedException e) {
     
    817808                } catch (PluginException e) {
    818809                    Main.warn(tr("Failed to find plugin {0}", name));
    819                     e.printStackTrace();
     810                    Main.error(e);
    820811                }
    821812            }
     
    858849            } catch (ExecutionException e) {
    859850                Main.warn(tr("Failed to download plugin information list")+": ExecutionException");
    860                 e.printStackTrace();
     851                Main.error(e);
    861852                // don't abort in case of error, continue with downloading plugins below
    862853            } catch (InterruptedException e) {
     
    905896                    future.get();
    906897                } catch(ExecutionException e) {
    907                     e.printStackTrace();
     898                    Main.error(e);
    908899                    alertFailedPluginUpdate(parent, pluginsToUpdate);
    909900                    return plugins;
     
    10981089                pi.updateFromJar(new PluginInformation(downloadedPluginFile, pi.name));
    10991090            } catch(PluginException e) {
    1100                 e.printStackTrace();
     1091                Main.error(e);
    11011092            }
    11021093        }
  • trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java

    r6615 r6643  
    248248                    }
    249249                }
    250                 catch(Exception e) { e.printStackTrace(); }
     250                catch(Exception e) { Main.error(e); }
    251251            }
    252252        }
  • trunk/src/org/openstreetmap/josm/plugins/PluginListParser.java

    r6552 r6643  
    11// License: GPL. For details, see LICENSE file.
    22package org.openstreetmap.josm.plugins;
    3 
    4 import org.openstreetmap.josm.tools.Utils;
    53
    64import static org.openstreetmap.josm.tools.I18n.tr;
     
    1311import java.util.LinkedList;
    1412import java.util.List;
     13
     14import org.openstreetmap.josm.Main;
     15import org.openstreetmap.josm.tools.Utils;
    1516
    1617/**
     
    104105            }
    105106        } catch (PluginListParseException ex) {
    106             ex.printStackTrace();
     107            Main.error(ex);
    107108        }
    108109    }
  • trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java

    r6248 r6643  
    9292            } catch(PluginListParseException e) {
    9393                Main.warn(tr("Failed to scan file ''{0}'' for plugin information. Skipping.", fname));
    94                 e.printStackTrace();
     94                Main.error(e);
    9595            }
    9696            monitor.worked(1);
  • trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java

    r6552 r6643  
    181181        } catch (MalformedURLException e) {
    182182            if (canceled) return null;
    183             e.printStackTrace();
     183            Main.error(e);
    184184            return null;
    185185        } catch (IOException e) {
     
    234234                    JosmTextArea area = new JosmTextArea(details);
    235235                    area.setEditable(false);
    236                     area.setLineWrap(true); 
    237                     area.setWrapStyleWord(true); 
     236                    area.setLineWrap(true);
     237                    area.setWrapStyleWord(true);
    238238                    JScrollPane scrollPane = new JScrollPane(area);
    239239                    scrollPane.setPreferredSize(new Dimension(500, 300));
     
    273273        } catch (MalformedURLException e) {
    274274            if (canceled) return;
    275             e.printStackTrace();
     275            Main.error(e);
    276276            return;
    277277        } catch (IOException e) {
     
    322322        } catch(IOException e) {
    323323            // just failed to write the cache file. No big deal, but log the exception anyway
    324             e.printStackTrace();
     324            Main.error(e);
    325325        } finally {
    326326            if (writer != null) {
     
    367367        } catch (PluginListParseException e) {
    368368            Main.error(tr("Failed to parse plugin list document from site ''{0}''. Skipping site. Exception was: {1}", site, e.toString()));
    369             e.printStackTrace();
     369            Main.error(e);
    370370        }
    371371    }
Note: See TracChangeset for help on using the changeset viewer.