am 82e43ff2: am d8a4e4d2: Merge "Don\'t allow Exchange logger to recurse on failure" into froyo

Merge commit '82e43ff284eac3767f38e81bf15188021581a8e1' into kraken

* commit '82e43ff284eac3767f38e81bf15188021581a8e1':
  Don't allow Exchange logger to recurse on failure
This commit is contained in:
Marc Blank 2010-04-14 16:30:25 -07:00 committed by Android Git Automerger
commit dd18cfa62a

View File

@ -106,8 +106,12 @@ public class FileLogger {
// If the card is mounted and we can create the writer, retry
LOGGER = new FileLogger();
if (sLogWriter != null) {
log("FileLogger", "Exception writing log; recreating...");
log(prefix, str);
try {
log("FileLogger", "Exception writing log; recreating...");
log(prefix, str);
} catch (Exception e1) {
// Nothing to do at this point
}
}
}
}