logging: note that tarring is occurring

As noted in #1411, this tarring can be particularly expensive so cluing
in the user may help alleviate pain

Connects-to: #1411
Change-type: patch
Signed-off-by: Matthew McGinn <matthew@balena.io>
This commit is contained in:
Matthew McGinn 2019-08-28 20:37:36 +02:00
parent 192b751e57
commit e3435c66df

View File

@ -177,6 +177,7 @@ export async function deployToDevice(opts: DeviceDeployOptions): Promise<void> {
); );
await checkBuildSecretsRequirements(docker, opts.source); await checkBuildSecretsRequirements(docker, opts.source);
globalLogger.logDebug('Tarring all non-ignored files...');
const tarStream = await tarDirectory(opts.source); const tarStream = await tarDirectory(opts.source);
// Try to detect the device information // Try to detect the device information