mint: add trace logs (#213)

This commit is contained in:
callebtc
2023-05-14 23:06:35 +02:00
committed by GitHub
parent d1cae88062
commit 68d9020cb3
4 changed files with 47 additions and 7 deletions

View File

@@ -42,6 +42,7 @@ class CashuSettings(BaseSettings):
class EnvSettings(CashuSettings):
debug: bool = Field(default=False)
log_level: str = Field(default="INFO")
host: str = Field(default="127.0.0.1")
port: int = Field(default=3338)
cashu_dir: str = Field(default=os.path.join(str(Path.home()), ".cashu"))