﻿---
title: ECS Logging Go (Zerolog)
description: ECS loggers are formatter/encoder plugins for your favorite logging libraries. They make it easy to format your logs into ECS-compatible JSON. The encoder...
url: https://www.elastic.co/elastic/docs-builder/docs/3028/reference/ecs/logging/go-zerolog
products:
  - ECS Logging
  - ECS Logging Go (Zerolog)
---

# ECS Logging Go (Zerolog)
ECS loggers are formatter/encoder plugins for your favorite logging libraries. They make it easy to format your logs into ECS-compatible JSON.
The encoder logs in JSON format and handles the logging of error fields in [ECS error format](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/reference/ecs/ecs-error).
By default, the following fields are added:
```json
{
  "log.level": "info",
  "@timestamp": "2020-09-13T10:48:03.000Z",
  "message":" some logging info",
  "ecs.version": "1.6.0"
}
```

<tip>
  Want to learn more about ECS, ECS logging, and other available language plugins? See the [ECS logging guide](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/reference/ecs/logging/intro).
</tip>

Ready to jump into `ecszerolog`? [Get started](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/ecs/logging/go-zerolog/setup).