Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Commit

Permalink
excuses to push a test release again
Browse files Browse the repository at this point in the history
  • Loading branch information
korewaChino committed Jun 8, 2022
1 parent 9264c91 commit 9c1a596
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion umpkg/log.py
@@ -1,4 +1,5 @@
import logging
import os
import sys
import traceback

Expand Down Expand Up @@ -36,7 +37,7 @@ def format(self, record: logging.LogRecord):
)
chdl = logging.StreamHandler(sys.stdout)
chdl.setFormatter(cfmt)
fhdl = logging.FileHandler("/tmp/umpkg.log", "a", "utf-8")
fhdl = logging.FileHandler(os.path.expanduser("~/.cache/umpkg.log"), "a", "utf-8")
fhdl.setFormatter(ffmt)


Expand Down

0 comments on commit 9c1a596

Please sign in to comment.