Skip to content

Commit

Permalink
fix: logging output configuration to recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
jardon committed Oct 18, 2024
1 parent d055de2 commit 141ee12
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion vanilla_first_setup/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,14 @@
import logging
from gettext import gettext as _
from vanilla_first_setup.window import VanillaWindow
from vanilla_first_setup.utils.recipe import RecipeLoader
import subprocess


logging.basicConfig(level=logging.INFO)
logging.basicConfig(level=logging.INFO,
filename=RecipeLoader().raw.get("log_file"),
filemode='a',
)
logger = logging.getLogger("FirstSetup::Main")


Expand Down

0 comments on commit 141ee12

Please sign in to comment.