Skip to content

Commit 80e9128

Browse files
d-w-moorekorydraughn
authored andcommitted
[#706] log irods.auth diagnostics at DEBUG level.
1 parent c8ac7ba commit 80e9128

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

irods/auth/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
class AuthStorage:
21-
"""A class that facilitates flexible means password storage.
21+
"""A class that facilitates flexible means of password storage.
2222
2323
Using an instance of this class, passwords may either be one of the following:
2424
@@ -166,7 +166,7 @@ def __init__(self, connection, scheme):
166166
self.scheme = scheme
167167

168168
def call(self, next_operation, request):
169-
logging.info("next operation = %r", next_operation)
169+
logging.debug("next operation = %r", next_operation)
170170
old_func = func = next_operation
171171
# One level of indirection should be sufficient to get a callable method.
172172
if not callable(func):
@@ -175,7 +175,7 @@ def call(self, next_operation, request):
175175
if not callable(func):
176176
raise RuntimeError("client request contains no callable 'next_operation'")
177177
resp = func(request)
178-
logging.info("resp = %r", resp)
178+
logging.debug("resp = %r", resp)
179179
return resp
180180

181181
def authenticate_client(
@@ -202,4 +202,4 @@ def authenticate_client(
202202
)
203203
to_send = resp
204204

205-
logging.info("fully authenticated")
205+
logging.debug("fully authenticated")

0 commit comments

Comments
 (0)