Open ksajan opened 5 months ago
I have found the issue is coming from here - https://github.com/drift-labs/driftpy/blob/97d24d81c1937cbd0dd75ff19787a56fd6348e0d/src/driftpy/decode/pull_oracle.py#L15
I have raised a small pr for removing this as well - Pull Request 179
Issue Description
Context:
After a successful subscription, a debug print statement continuously prints the number '1' in the console. This behavior appears to be unintended and results in excessive logging, which can clutter the output and make it difficult to track other important logs.
Steps to Reproduce:
Subscribe to the service or feature. Observe the console output after the subscription is successful.
Expected Behavior:
After a successful subscription, the console should not continuously print the number '1'.
Actual Behavior:
The console continuously prints the number '1' after a successful subscription.
Impact:
Clutters the console output. Makes it harder to identify other important logs. Potentially affects performance due to excessive logging.
Suggested Solution:
Identify and remove or comment out the debug print statement causing the continuous output.
Please address this issue to maintain clean and efficient logging in the application. Thank you!