> For the complete documentation index, see [llms.txt](https://developer.harness.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.harness.io/continuous-delivery/troubleshooting-and-resources/armory/general/setting-up-logging-without-tokens.md).

# Setting up Logging without Tokens

### Introduction <a href="#introduction" id="introduction"></a>

In some environments, customers may find that they want to set up logging without Tokens or Security. If Tokens are not available, Logging can still be set up, although it is not recommended in generally due to possible security risks.

### Prerequisites <a href="#prerequisites" id="prerequisites"></a>

Customers should look to set up the logging endpoint with the following additional instructions <https://docs.armory.io/armory-enterprise/armory-admin/observe/integrations-logging/>

### Instructions <a href="#instructions" id="instructions"></a>

Customers looking to set up logging can remove the need for a token in the definition as per the following example. Once again, it is not recommended due to general security best practices.

```
spec:
  spinnakerConfig:
    profiles:
      echo: 
        rest:
          enabled: true
          endpoints:
          - wrap: true
            url: ":/services/collector/event?"
            template: '{"event":{{event}} }'
          insecure: true
```
