Skip to content

Commit

Permalink
feat: Send - log error during debug
Browse files Browse the repository at this point in the history
  • Loading branch information
vio committed Aug 14, 2021
1 parent 67f8bab commit 2d8a405
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/send.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export default async (data, params, config, logger) => {
logger.info(`Job #${buildNumber} done.`);
logger.info(buildSizeInfo);
} catch (err) {
logger.warn(err);
logger.warn(err.message);
debug('@relative-ci/agent could not send the data', err);
}
};

0 comments on commit 2d8a405

Please sign in to comment.