Changeset 12697


Ignore:
Timestamp:
05/17/10 18:33:12 (14 years ago)
Author:
Mark Evenson
Message:

Backport r12695: Change messages from trace to warn for failing InputStream?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/0.20.x/abcl/src/org/armedbear/lisp/Pathname.java

    r12667 r12697  
    21032103        Debug.trace("Failed to get InputStream for "   
    21042104        + "'" + getNamestring() + "'");
    2105 
     2105                    // XXX should this be fatal?
    21062106        Debug.assertTrue(false);
    21072107    }
     
    21092109                    result = jarFile.getInputStream(entry);
    21102110                } catch (IOException e) {
    2111                     Debug.trace("Failed to get InputStream from "
     2111                    Debug.warn("Failed to get InputStream from "
    21122112                                + "'" + getNamestring() + "'"
    21132113                                + ": " + e);
     
    21192119                result = url.openStream();
    21202120            } catch (IOException e) {
    2121                 Debug.trace("Failed to get InputStream from "
     2121                Debug.warn("Failed to get InputStream from "
    21222122                            + "'" + getNamestring() + "'"
    21232123                            + ": " + e);
     
    21282128                result = new FileInputStream(file);
    21292129            } catch (IOException e) {
    2130                 Debug.trace("Failed to get InputStream from "
     2130                Debug.warn("Failed to get InputStream from "
    21312131                            + "'" + getNamestring() + "'"
    21322132                            + ": " + e);
Note: See TracChangeset for help on using the changeset viewer.