move debug level on failure to clean log files from warn to debug

This commit is contained in:
Shay Banon 2012-08-16 10:34:31 -07:00
parent f317399b46
commit a4acb9a95b
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public class ThreadLocals {
}
}
} catch (Exception e) {
logger.warn("Failed to clean thread locals", e);
logger.debug("failed to clean thread locals", e);
}
}