Issue when trying to log network calls on real device. #163
Answered
by
theo-brlle
theo-brlle
asked this question in
Q&A
|
Hey! 👋 I'm using Pulse on my app with a basic Apollo GraphQL configuration to do the network calls. I'm using the default Do you have an idea of what could be the problem in my configuration? 🤔 Thanks in advance! 🙂 |
Answered by
theo-brlle
Feb 8, 2023
Replies: 1 comment
|
Ok I just found what I was doing wrong. 😅 I was calling the |
0 replies
Answer selected by
theo-brlle
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ok I just found what I was doing wrong. 😅 I was calling the
URLSessionProxyDelegate.enableAutomaticRegistration()method each time I was doing a Network call because I put it in a computed property. Solved by calling the method only on app launch (in theinit()of the main class of my network layer) 👍