How do I view logs? #974
Replies: 2 comments 2 replies
-
|
The logs you are seeing are the startup logs. For access/request logs, check these: 1. View live Docker logs: docker logs -f perplexica2. Enable debug logging by setting environment variable: environment:
- LOG_LEVEL=debug3. For SearXNG logs specifically: docker exec perplexica cat /var/log/searxng/searx.log4. Check Next.js output - by default Next.js doesnt log requests in production mode. You can enable it: // next.config.js
module.exports = {
logging: {
fetches: {
fullUrl: true,
},
},
}For those SearXNG errors (ahmia, torch engines) - those are normal, theyre Tor-based search engines that need special network config. They wont affect normal operation. What specific issues are you debugging? That might help narrow down which logs you need. |
Beta Was this translation helpful? Give feedback.
-
|
for the external searxng issue, whats the url format youre using? if its not on the same docker network you might need to use the actual IP instead of container name. also check if your external instance has json format enabled, perplexica needs that for openwebui can you share what the tool config looks like? hard to debug without seeing how its calling perplexica the web search not being consulted thing sounds like issue #973 yeah. might be worth following that one since its the same root cause what do you see in the logs when you hit discover with external searxng vs the bundled one? any difference in the error output? |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
Feels like an odd question but I just installed via docker and all I see are bootup logs in the docker container logs. I'm trying to debug some issues and it would be nice to see access logs or more.
My docker logs end here:
Beta Was this translation helpful? Give feedback.
All reactions