function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Raghu Natha 2Raghu Natha 2 

Unable to see logs

I have a user in salesforce and I am using that user in a nodejs app to connect to salesforce and retrieve records. 
Even after enabling debug logs for the user, and firing a request from node js app, I cannot see a log event in salesforce.
Let me know where I can see the log files 

Thank you,
Raghu
PriyaPriya (Salesforce Developers) 

Hi Raghu,

You have probably exceeded the capacity to store Apexlog, which is 250MB.
To solve this, make an extraction with the data export on the object "Apexlog" and copy it, then with the data import you delete them.
Once you delete it, restart the developer console or session.

Also refer few examples below for more information :- 
https://developer.salesforce.com/forums/?id=906F0000000B2GgIAK

https://salesforce.stackexchange.com/questions/210747/developer-console-not-showing-debug-logs

https://salesforce.stackexchange.com/questions/169472/debug-logs-in-developer-console

 

If the above information helps you, please mark it as best answer.

Regards,

Priya Ranjan

Raghu Natha 2Raghu Natha 2
Hi Priya, thank you for the reply. 
Log size limit is not an issue in my scenario, when I execute code in amaonymous window and use system.debug, I can see the logs in SF.
The issue in my scenario is, My node js application is connecting to SF and retrieving some information,
I want to know if the request from node js app can be viewed in salesforce, If so is there a specific object where the log is saved ? i cannot find any logs under Apex log object or any other object 

Thank you,
Raghu