Skip to content

Commit

Permalink
fix: undefined log
Browse files Browse the repository at this point in the history
  • Loading branch information
L0wry committed Aug 2, 2018
1 parent 3adbb63 commit acb6a44
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/remoteActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,10 @@ const uploadRemoteKeys = async (key, config) => {

const contentType = key === 'report' ? 'text/html' : 'image/png';

logger.info('Key: ' + `${config.browser}/${key}/${path.basename(file)}`);
logger.info(
'upload-remote',
`Uploading to S3: ${config.browser}/${key}/${path.basename(file)}`
);

const uploadParams = {
Bucket: config.remoteBucketName,
Expand Down

0 comments on commit acb6a44

Please sign in to comment.