def getLogFormat(self):
		""" Returns the log record format. """
		return AbsentSafeRawConfigParser.absentSafeGet(self, 
			LogConfigParser.__LOG_CONFIG_SECTION, 
			LogConfigParser.__LOG_FORMAT_KEY)
	def getLogLevel(self):
		""" Returns the minimum logging level. """
		return AbsentSafeRawConfigParser.absentSafeGet(self, 
			LogConfigParser.__LOG_CONFIG_SECTION, 
			LogConfigParser.__LOG_LEVEL_KEY)
	def getLogFile(self):
		""" Returns the log file path. """
		return AbsentSafeRawConfigParser.absentSafeGet(self, 
			LogConfigParser.__LOG_CONFIG_SECTION, 
			LogConfigParser.__LOG_FILE_KEY)