mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 14:13:07 +00:00
05812ba442
This function is introduced to remove some duplication
15 lines
399 B
CoffeeScript
15 lines
399 B
CoffeeScript
resin = require('resin-sdk')
|
|
permissions = require('../permissions/permissions')
|
|
log = require('../log/log')
|
|
errors = require('../errors/errors')
|
|
|
|
LOGS_HISTORY_COUNT = 200
|
|
|
|
exports.logs = permissions.user (params, options) ->
|
|
|
|
resin.logs.subscribe params.uuid, {
|
|
history: options.num or LOGS_HISTORY_COUNT
|
|
tail: options.tail
|
|
}, errors.handleCallback (message) ->
|
|
log.array(message, log.out)
|