mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 14:13:07 +00:00
16 lines
400 B
CoffeeScript
16 lines
400 B
CoffeeScript
resin = require('resin-sdk')
|
|
permissions = require('../permissions/permissions')
|
|
log = require('../log/log')
|
|
|
|
LOGS_HISTORY_COUNT = 200
|
|
|
|
exports.logs = permissions.user (params, options, done) ->
|
|
|
|
resin.logs.subscribe params.uuid, {
|
|
history: options.num or LOGS_HISTORY_COUNT
|
|
tail: options.tail
|
|
}, (error, message) ->
|
|
return done(error) if error?
|
|
log.array(message, log.out)
|
|
return done()
|