You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
os.mkdir(s.root_path+directory)
# Create Averages directory in /sd/Archive/ directory#if s.archive_averages not in os.listdir(s.root_path + s.archive):# os.mkdir(s.archive_path + s.archive_averages)defremove_residual_files(self):
""" Removes residual files from the last boot in the current and processing dirs """#TODO: clean up ? do we need it now that there is no archive process?# for path in [s.current_path, s.processing_path]:# for file in os.listdir(path[:-1]): # Strip '/' from the end of path# if file != s.lora_file_name:# os.remove(path + file)# def get_logging_level(self):# """# Get logging level from configurations# :return: logging level# :rtype: str# """# logging_lvl = Configuration(self.logger).get_config("logging_lvl")# if logging_lvl == "Critical":# return CRITICAL# elif logging_lvl == "Error":# return ERROR# elif logging_lvl == "Warning":# return WARNING# elif logging_lvl == "Info":# return INFO# elif logging_lvl == "Debug":# return DEBUG# #TODO: just use this in the config! dont translate
80a24e55e3a4e12cc62699974da1f3a9be303946
The text was updated successfully, but these errors were encountered:
just use this in the config! dont translate
https://github.com/pyonair/PyonAir-pycom/blob/9fcaa24dabe3cf0b380c32b1baac3f88a1cfe5e7/code/lib/initialisation.py#L165
80a24e55e3a4e12cc62699974da1f3a9be303946
The text was updated successfully, but these errors were encountered: