Skip to content

Commit

Permalink
enhance(logs): explain log encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
wass3r committed Feb 29, 2024
1 parent 1416689 commit b4d4302
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 b4d4302

Please sign in to comment.