Revert "Add logger"
This reverts commit e071906d58d2143ebc7aced055a6ba20b4f31c6e.
This commit is contained in:
parent
7b24709d3d
commit
561a946f5b
@ -1,8 +1,6 @@
|
|||||||
from os import environ, makedirs, path
|
from os import environ, makedirs, path
|
||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
import logging
|
|
||||||
log = logging.getLogger(__name__)
|
|
||||||
class ConfigFile:
|
class ConfigFile:
|
||||||
"""
|
"""
|
||||||
Class managing a yaml config file.
|
Class managing a yaml config file.
|
||||||
@ -17,7 +15,6 @@ class ConfigFile:
|
|||||||
self.values = init_values
|
self.values = init_values
|
||||||
self.filepath = filepath
|
self.filepath = filepath
|
||||||
if path.isfile(self.filepath):
|
if path.isfile(self.filepath):
|
||||||
log.debug(f"[{self.filepath}] loading from file")
|
|
||||||
with open(self.filepath, "r") as file:
|
with open(self.filepath, "r") as file:
|
||||||
self.values |= yaml.safe_load(file)
|
self.values |= yaml.safe_load(file)
|
||||||
|
|
||||||
@ -26,7 +23,6 @@ class ConfigFile:
|
|||||||
directory = path.dirname(self.filepath)
|
directory = path.dirname(self.filepath)
|
||||||
if not path.isdir(directory):
|
if not path.isdir(directory):
|
||||||
makedirs(directory)
|
makedirs(directory)
|
||||||
log.debug(f"[{self.filepath}] saving to file")
|
|
||||||
with open(self.filepath, "w") as file:
|
with open(self.filepath, "w") as file:
|
||||||
yaml.dump(self.values, file)
|
yaml.dump(self.values, file)
|
||||||
|
|
||||||
@ -39,12 +35,10 @@ class ConfigFile:
|
|||||||
raise KeyError(f"Key '{name}' not found in config file '{self.filepath}'")
|
raise KeyError(f"Key '{name}' not found in config file '{self.filepath}'")
|
||||||
|
|
||||||
def set(self, name: str, value):
|
def set(self, name: str, value):
|
||||||
log.debug(f"[{self.filepath}] set {name} = {value}")
|
|
||||||
self.values[name] = value
|
self.values[name] = value
|
||||||
|
|
||||||
def get_values(self):
|
def get_values(self):
|
||||||
return self.values.copy()
|
return self.values.copy()
|
||||||
|
|
||||||
def set_values(self, values):
|
def set_values(self, values):
|
||||||
log.debug(f"[{self.filepath}] set values = {values}")
|
|
||||||
self.values = values
|
self.values = values
|
Loading…
x
Reference in New Issue
Block a user