Skip to content

Commit f79eb0d

Browse files
authored
Merge pull request #315 from ligangty/radas-umb
RADAS: Added some log
2 parents 5720473 + 59a6290 commit f79eb0d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

charon/cmd/cmd_sign.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ def sign(
131131
"ignore_patterns": ig_patterns,
132132
"radas_config": radas_conf
133133
}
134-
logger.debug("params: %s", args)
135134
sign_in_radas(**args) # type: ignore
136135
except Exception:
137136
print(traceback.format_exc())

charon/pkgs/radas_sign.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,10 +201,12 @@ def __init__(self, payload: Any, rconf: RadasConfig):
201201

202202
def on_start(self, event):
203203
self._container = event.container
204+
self.log.debug("Start creating connection for sender")
204205
conn = self._container.connect(
205206
url=self.rconf.umb_target(),
206207
ssl_domain=self._ssl
207208
)
209+
self.log.debug("Connection to %s is created.", conn.hostname)
208210
if conn:
209211
self._sender = self._container.create_sender(conn, self.rconf.request_channel())
210212

0 commit comments

Comments
 (0)