diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-08-08 16:39:01 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-08-08 16:39:01 +0200 |
| commit | 607c9e909516b5392d5841996a0f184b3a5a8f41 (patch) | |
| tree | 674590913dbc38b9d368c164d254dd865688b4ac | |
| parent | 053a2a3f09d24784223ef8c7e8aea812df512518 (diff) | |
| download | telesucker-607c9e909516b5392d5841996a0f184b3a5a8f41.tar.gz telesucker-607c9e909516b5392d5841996a0f184b3a5a8f41.zip | |
output warning if phase is empty
| -rw-r--r-- | worker.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -117,6 +117,8 @@ amqp.connect(RABBITMQ_URI).then(async (rabbit) => { persistent: true, type: "telemetry", headers: { notify } }) + } else { + logger.info("Warning! No data for this phase.", { phase }); } }); forward_profiler.done("Telemetry splitting"); |
