# How to watch Orchestrator logs

import DocButton from '~/components/webkit/DocButton.vue';

After the installation of **Orchestrator Agent**, you can check the [edge node's logs](#checking-an-edge-nodes-logs) and the [edge services triggers' logs](#checking-edge-services-logs).

--- 

## Checking an edge node's logs

1. Access your [edge node](/en/documentation/products/guides/deploy/install-orchestrator-agent/).
2. Open the terminal. 
3. Run the following command: 

```bash
sudo vim /var/log/azion/edge-orchestrator.log 
```

:::note 
You can choose the text editor you want, as long as it's installed on the edge node.
:::

This command outputs the logs related to the edge node in specific, presenting: 

- The manifest version. 
- Communication with the server. 
- Errors.

--- 

## Checking edge services' logs 

1. Access your edge node.
2. Open the terminal. 
3. Run the following command: 

```bash
sudo vim /var/log/azion/edge-services.log 
```

This command outputs the logs related to the edge node in specific, presenting the logs of the install, update, and delete triggers configured inside the edge services bound to the edge node.

<DocButton href="/en/documentation/products/guides/deploy/advanced/run-scripts/" label="go to how to run scripts" kind="secondary" target="_blank" size="medium" />