Enhanced error logging.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2482 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-04-27 06:43:51 +00:00
parent 278b04206c
commit a26d42549f
@@ -1,5 +1,5 @@
// //
// $Id: BundledComponentRepository.java,v 1.26 2003/04/27 06:35:28 mdb Exp $ // $Id: BundledComponentRepository.java,v 1.27 2003/04/27 06:43:51 mdb Exp $
package com.threerings.cast.bundle; package com.threerings.cast.bundle;
@@ -303,9 +303,9 @@ public class BundledComponentRepository
return new TileSetFrameImage(aset, actseq); return new TileSetFrameImage(aset, actseq);
} catch (Exception e) { } catch (Exception e) {
Log.warning("Error loading tileset for action " + Log.warning("Error loading tileset for action '" + action +
"[action=" + action + ", component=" + component + "' " + component + ".");
", error=" + e + "]."); Log.logStackTrace(e);
return null; return null;
} }
} }