Use this piece of code to create a nice redirection to your own logs of the latest version with a URl that points to your project.
const fs = require('fs');
let name = JSON.parse(fs.readFileSync('./stdlib.json')).name;
let account = name.split('/')[0];
let project = name.split('/')[1];
let version = context.service.version;
return {
statusCode: 302,
headers: { 'Content-Type': 'text/plain', 'Location': `https://autocode.com/logs/${account}/${project}/${version}` },
body: 'Found'
};