AI Model Logs Not Showing Up Suddenly

Hello n8n community,

I’m experiencing an issue with my AI workflow where the logs for AI model access have suddenly stopped appearing. This problem started today without any apparent changes to my setup.

I’ve already tried installing another version of n8n, I’ve tried changing the models, and nothing has helped.

My Setup:

  • I’m using the AI Agent node with Ollama Chat Model (but this problem also occour with deepseek)
  • The workflow connects a chat message trigger to the AI Agent
  • I have Simple Memory, HTTP Request, and Date & Time nodes connected as tools

The Issue:

When the workflow runs, I can no longer see any logs related to the AI model access. Everything was working fine until today, and the logs just stopped showing this information without any changes on my part.

Has anyone else experienced this issue? Is there a setting I might have accidentally changed that affects log visibility for AI model interactions?

Any help would be greatly appreciated as I need these logs for debugging and monitoring purposes.

This is my yml file censored

version: “3.7”

services:
n8n:
image: n8nio/n8n:1.90.2
container_name: n8n
restart: unless-stopped
ports:
- “5678:5678”
environment:
# Configurações de Banco de Dados
- DB_TYPE=postgresdb
- DB_POSTGRESDB_DATABASE=n8n_db
- DB_POSTGRESDB_HOST=xxxxxxxxxxxxx
- DB_POSTGRESDB_PORT=xxxx
- DB_POSTGRESDB_USER=xxxxxxxxxxx
- DB_POSTGRESDB_PASSWORD=xxxxxxxxxx
- DB_POSTGRESDB_SCHEMA=public

  # Configurações de Autenticação e Timezone
  - N8N_BASIC_AUTH_ACTIVE=false
  - GENERIC_TIMEZONE=America/Sao_Paulo
  - TZ=America/Sao_Paulo
  - WEBHOOK_URL=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  
  # Configurações para Módulos Externos
  - NODE_FUNCTION_ALLOW_EXTERNAL=true
  - N8N_NODES_INCLUDE=n8n-nodes-base.code
  - N8N_CODE_ENABLE_EXTERNAL_MODULES=true
  
  # Configuração para Puppeteer - Conexão com o browserless
  - PUPPETEER_BROWSER_ENDPOINT=ws://browserless:xxxx
  
  # Configurações adicionais
  - N8N_METRICS=true
  - N8N_DIAGNOSTICS_ENABLED=true
  - N8N_DIAGNOSTICS_CONFIG_SUBMISSIONS_ENABLED=false
  - N8N_VERSION_NOTIFICATIONS_ENABLED=false
  - N8N_HIRING_BANNER_ENABLED=false
  - N8N_NODES_CODE_NODE_MAX_CONTEXT_LENGTH=16384
  - N8N_SKIP_WEBHOOK_DEREGISTRATION_SHUTDOWN=true
volumes:
  - n8n_data:/home/node/.n8n
  - ./arquivos:/arquivos
networks:
  - evolutionapi_evolution-net
  - n8n-network

volumes:
n8n_data:

networks:
evolutionapi_evolution-net:
external: true
n8n-network:
external: true