Skip to content

Commit d39dbfe

Browse files
More logging
1 parent 298546c commit d39dbfe

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/flare_ai_defai/api/routes/chat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
logger_factory=structlog.stdlib.LoggerFactory(),
3838
wrapper_class=structlog.stdlib.BoundLogger,
3939
)
40-
logging.basicConfig(level=logging.INFO)
40+
logging.basicConfig(level=logging.DEBUG)
4141
logger = structlog.get_logger(__name__)
4242

4343
# Session storage (use Redis or database in production)

src/flare_ai_defai/blockchain/flare.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@
88
from dataclasses import dataclass
99

1010
import structlog
11+
import logging
1112
from eth_account import Account
1213
from eth_typing import ChecksumAddress
1314
from web3 import Web3
1415
from web3.types import TxParams
1516

17+
logging.basicConfig(level=logging.DEBUG)
1618

1719
@dataclass
1820
class TxQueueElement:

0 commit comments

Comments
 (0)