How to see which code causes RPC Requests

In the console of my browser I see that some requests take quite a long time:

Is it possible to see from the console only which line of code causes this specific request?

Not directly, I don’t think. But if you click the expand arrow next to “Response:” you will be able to see information about what the server call (presumably) returned, which may enable you to figure it out.

Otherwise, you could add timings to your code?

1 Like

Yeah, I do that already. But it’s a bit cumbersome to figure it out that way, especially if you use multiple statements like self.item["text"] in the properties manager.

1 Like