Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function logs(account, project, options, cb) {
var opts = buildApigeetoolOpts(account);
opts.api = project.name;
if (options.timezone) { opts.timezone = options.timezone; }
if (options.follow) { opts.streaming = true; }
apigeetool.getLogs(opts, cb);
}