We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb8ab30 commit f549039Copy full SHA for f549039
quark/script/frida/__init__.py
@@ -62,6 +62,11 @@ def stopWatchingMethodCall(
62
def receiveMessage(self, messageFromFridaAgent: dict, _) -> None:
63
if messageFromFridaAgent["type"] == "error":
64
errorDescription = messageFromFridaAgent["description"]
65
+ """Send the event captured by Frida to the corresponding
66
+ buffers.
67
+
68
+ :param eventWrapperFromFrida: python dict containing captured events
69
+ """
70
print(errorDescription, file=sys.stderr)
71
return
72
0 commit comments