forked from p15670423/monkey
Agent: Make log message more specific in agent_event_forwarder.py
This commit is contained in:
parent
5ad5de9c4a
commit
edce35efef
|
@ -84,7 +84,7 @@ class BatchingAgentEventForwarder:
|
||||||
events.append(self._queue.get(block=False))
|
events.append(self._queue.get(block=False))
|
||||||
|
|
||||||
try:
|
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
|
requests.post( # noqa: DUO123
|
||||||
EVENTS_API_URL % (self._server_address,),
|
EVENTS_API_URL % (self._server_address,),
|
||||||
json=events,
|
json=events,
|
||||||
|
|
Loading…
Reference in New Issue