Skip to content

Commit

Permalink
enhance(logs): explain log encoding (#401)
Browse files Browse the repository at this point in the history
Co-authored-by: Easton Crupper <65553218+ecrupper@users.noreply.github.com>
  • Loading branch information
wass3r and ecrupper committed Apr 10, 2024
1 parent cc60ffd commit 8eabac2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions content/reference/api/build/logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,9 @@ curl \
}
]
```

The `data` field is base64 encoded. To decode the data, you can use the following command:

```sh
echo "SGVsbG8sIFdvcmxkIQ==" | base64 --decode
```
6 changes: 6 additions & 0 deletions content/reference/api/service/logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,9 @@ curl \
"data": "SGVsbG8sIFdvcmxkIQ=="
}
```

The `data` field is base64 encoded. To decode the data, you can use the following command:

```sh
echo "SGVsbG8sIFdvcmxkIQ==" | base64 --decode
```
6 changes: 6 additions & 0 deletions content/reference/api/step/logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,9 @@ curl \
"data": "SGVsbG8sIFdvcmxkIQ=="
}
```

The `data` field is base64 encoded. To decode the data, you can use the following command:

```sh
echo "SGVsbG8sIFdvcmxkIQ==" | base64 --decode
```

0 comments on commit 8eabac2

Please sign in to comment.