fix error message

This commit is contained in:
Doug MacEachern 2007-02-08 02:10:20 +00:00
parent 3f94d624b1
commit 769634ef4b
1 changed files with 2 additions and 1 deletions

View File

@ -100,7 +100,8 @@ public class FileWatcherThread implements Runnable {
try {
watcher.check();
} catch (Exception e) {
FileTail.error("Unexception exception", e);
FileTail.error("Unexpected exception: " +
e.getMessage(), e);
}
}
}