mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 05:37:53 +00:00
Remove some logging from supervisor that wasn't that useful (and caused a lot of noise when looking for issues).
This commit is contained in:
parent
0cb3316ad9
commit
1b0cdfe094
@ -79,7 +79,6 @@ kill = (app) ->
|
||||
logSystemEvent(logTypes.stopApp, app)
|
||||
updateDeviceState(status: 'Stopping')
|
||||
container = docker.getContainer(app.containerId)
|
||||
console.log('Stopping and deleting container:', container)
|
||||
tty.stop(app)
|
||||
.catch (err) ->
|
||||
console.error('Error stopping tty', err)
|
||||
@ -226,8 +225,8 @@ getEnvironment = do ->
|
||||
|
||||
cachedResinApi._request(requestParams)
|
||||
.catch (err) ->
|
||||
console.error("Failed to get environment for device #{deviceId}, app #{appId}. #{err}")
|
||||
throw err
|
||||
console.error("Failed to get environment for device #{deviceId}, app #{appId}. #{err}")
|
||||
throw err
|
||||
|
||||
# 0 - Idle
|
||||
# 1 - Updating
|
||||
@ -273,7 +272,6 @@ exports.update = update = ->
|
||||
remoteApp.environment_variable = environment
|
||||
return remoteApp
|
||||
.then (remoteApps) ->
|
||||
console.log('Remote apps')
|
||||
remoteApps = _.map remoteApps, (app) ->
|
||||
env =
|
||||
RESIN_DEVICE_UUID: uuid
|
||||
@ -291,28 +289,18 @@ exports.update = update = ->
|
||||
|
||||
remoteApps = _.indexBy(remoteApps, 'imageId')
|
||||
remoteImages = _.keys(remoteApps)
|
||||
console.log(remoteImages)
|
||||
|
||||
console.log('Local apps')
|
||||
apps = _.indexBy(apps, 'imageId')
|
||||
localApps = _.mapValues apps, (app) ->
|
||||
_.pick(app, [ 'appId', 'commit', 'imageId', 'env' ])
|
||||
localImages = _.keys(localApps)
|
||||
console.log(localImages)
|
||||
|
||||
console.log('Apps to be removed')
|
||||
toBeRemoved = _.difference(localImages, remoteImages)
|
||||
console.log(toBeRemoved)
|
||||
|
||||
console.log('Apps to be installed')
|
||||
toBeInstalled = _.difference(remoteImages, localImages)
|
||||
console.log(toBeInstalled)
|
||||
|
||||
console.log('Apps to be updated')
|
||||
toBeUpdated = _.intersection(remoteImages, localImages)
|
||||
toBeUpdated = _.filter toBeUpdated, (imageId) ->
|
||||
return !_.isEqual(remoteApps[imageId], localApps[imageId])
|
||||
console.log(toBeUpdated)
|
||||
|
||||
# Fetch any updated images first
|
||||
Promise.map toBeInstalled, (imageId) ->
|
||||
|
Loading…
Reference in New Issue
Block a user