We are planning to have a custom log level in our python application
VERBOSE_LEVEL = 5 #VERBOSE log level.(VERBOSE < DEBUG)
logging.addLevelName(VERBOSE_LEVEL, "VERBOSE")
We thought of going with either VERBOSE or TRACE for the custom log. I though VERBOSE will be more precise but libraries like LOG4J in java has TRACE as lower log level than DEBUG. Any suggestion on which one to select?