[core] Make logging work in (hopefully) all situations

* Unless debugging has been enabled, log to stderr (i.e. do *not* try to
open a file)
* When debugging into a file, choose a location that is likely to be
writeable by the user (i.e. the user's home directory)
* Location of the logfile can also be specified
    
fixes #62
This commit is contained in:
tobi-wan-kenobi 2017-04-04 15:15:50 +02:00 committed by GitHub
parent e6df55b3cb
commit dc3881d99e

View file

@ -11,12 +11,21 @@ import bumblebee.input
import bumblebee.modules.error
def main():
logging.basicConfig(
level=logging.DEBUG,
format="[%(asctime)s] %(levelname)-8s %(message)s",
filename="{}/debug.log".format(os.path.dirname(os.path.realpath(__file__)))
)
config = bumblebee.config.Config(sys.argv[1:])
if config.debug():
logging.basicConfig(
level=logging.DEBUG,
format="[%(asctime)s] %(levelname)-8s %(message)s",
filename=os.path.expanduser(config.logfile())
)
else:
logging.basicConfig(
level=logging.DEBUG,
format="[%(asctime)s] %(levelname)-8s %(message)s",
stream=sys.stderr
)
theme = bumblebee.theme.Theme(config.theme())
output = bumblebee.output.I3BarOutput(theme=theme)
inp = bumblebee.input.I3BarInput()