Skip to content

Commit

Permalink
Merge pull request #41 from s-hal/logging
Browse files Browse the repository at this point in the history
Add console logging to DC4EU wallet provider configuration
  • Loading branch information
rohe authored Jan 23, 2025
2 parents c348b93 + 577459c commit d10b3b4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions dc4eu_federation/wallet_provider/conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
"disable_existing_loggers": false,
"root": {
"handlers": [
"default"
"default",
"console"
],
"level": "DEBUG"
},
"loggers": {
"bobcat_idp": {
"entity": {
"level": "DEBUG"
}
},
Expand All @@ -18,6 +19,11 @@
"class": "logging.FileHandler",
"filename": "wallet_provider/debug.log",
"formatter": "default"
},
"console": {
"class": "logging.StreamHandler",
"stream": "ext://sys.stdout",
"formatter": "default"
}
},
"formatters": {
Expand Down

0 comments on commit d10b3b4

Please sign in to comment.