Skip to content

Commit

Permalink
fix(dreamio-driver): Remove unexpected console.log (#2561)
Browse files Browse the repository at this point in the history
  • Loading branch information
ovr committed Apr 14, 2021
1 parent 4ff93fe commit a3beee7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/cubejs-dremio-driver/driver/DremioDriver.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,6 @@ class DremioDriver extends BaseDriver {
for (;;) {
const { data } = await this.getJobStatus(jobId);

console.log(data.jobState, jobId);

if (data.jobState === 'FAILED') {
throw new Error(data.errorMessage);
} else if (data.jobState === 'CANCELED') {
Expand Down

0 comments on commit a3beee7

Please sign in to comment.