Debugging Javascript Code Tool running in docker: Where is Console.log going?

Describe the problem/error/question

I am running n8n v1.75.2 using the docker image, on my own AWS server. I’ve been writing some AI Agent Code Tools in Javascript, and am running in to the need to debug some of the code. I tried using Console.log, but I can’t figure out where this is going?

I’m running the image using the command:

sudo docker run -it --rm --name n8n -p 5678:5678 -e N8N_SECURE_COOKIE=FALSE -e NODE_FUNCTION_ALLOW_EXTERNAL=node-fetch -v n8n_data:/home/node/.n8n docker.n8n.io/n8nio/n8n

I’m new to n8n, and have not customized much yet … I have tools working, but now have one throwing errors and I can’t see what is going wrong. :-/

What is the error message (if any)?

No error message … I just can’t seem to find where Console.log output might be going, or if I have to set something else up?

Information on your n8n setup

  • n8n version: v1.75.2
  • Database (default: SQLite): SQLLite
  • n8n EXECUTIONS_PROCESS setting (default: own, main): default
  • Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
  • Operating system: Amazon Linux

Welcome to the community @Humancell !

Tip for sharing information

Pasting your n8n workflow


Ensure to copy your n8n workflow and paste it in the code block, that is in between the pairs of triple backticks, which also could be achieved by clicking </> (preformatted text) in the editor and pasting in your workflow.

```
<your workflow>
```

That implies to any JSON output you would like to share with us.

Make sure that you have removed any sensitive information from your workflow and include dummy or pinned data with it!


You will find the logs in the browser Console.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.