Agent: Make log message more specific in agent_event_forwarder.py

This commit is contained in:
Shreya Malviya 2022-09-16 17:57:11 +05:30 committed by Mike Salvatore
parent 5ad5de9c4a
commit edce35efef
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class BatchingAgentEventForwarder:
events.append(self._queue.get(block=False))
try:
logger.debug(f"Sending events to Island at {self._server_address}: {events}")
logger.debug(f"Sending Agent events to Island at {self._server_address}: {events}")
requests.post( # noqa: DUO123
EVENTS_API_URL % (self._server_address,),
json=events,