Skip to content

Commit 6239655

Browse files
committed
Set example/idp2 to log to stderr to avoid redirecting log-output to metadata files
Signed-off-by: Ivan Kanakarakis <[email protected]>
1 parent d440116 commit 6239655

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

example/idp2/idp_conf.py.example

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,22 +145,22 @@ CONFIG = {
145145
},
146146
},
147147
"handlers": {
148-
"stdout": {
148+
"stderr": {
149149
"class": "logging.StreamHandler",
150-
"stream": "ext://sys.stdout",
150+
"stream": "ext://sys.stderr",
151151
"level": "DEBUG",
152152
"formatter": "simple",
153153
},
154154
},
155155
"loggers": {
156156
"saml2": {
157-
"level": "INFO"
157+
"level": "DEBUG"
158158
},
159159
},
160160
"root": {
161161
"level": "DEBUG",
162162
"handlers": [
163-
"stdout",
163+
"stderr",
164164
],
165165
},
166166
},

0 commit comments

Comments
 (0)