Changeset 250
- Timestamp:
- 09/02/08 17:56:06 (5 years ago)
- File:
-
- 1 edited
-
bbtracker/trunk/src/org/bbtracker/mobile/Log.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bbtracker/trunk/src/org/bbtracker/mobile/Log.java
r138 r250 78 78 79 79 public static void log(final Object source, final Throwable e) { 80 log(source, "Exception: " + e. toString());80 log(source, "Exception: " + e.getMessage() + " <" + e.toString() + ">"); 81 81 // this is only useful for debugging in the emulator 82 82 e.printStackTrace(); … … 84 84 85 85 public static void log(final Object source, final Throwable e, final String message) { 86 log(source, "Exception <" + message + ">: " + e. toString());86 log(source, "Exception <" + message + ">: " + e.getMessage() + " <" + e.toString() + ">"); 87 87 // this is only useful for debugging in the emulator 88 88 e.printStackTrace();
Note: See TracChangeset
for help on using the changeset viewer.