Skip to content

Commit

Permalink
Log the snowsql command
Browse files Browse the repository at this point in the history
  • Loading branch information
odinuv authored Mar 13, 2024
1 parent 9bf8736 commit 6791dab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Extractor/SnowsqlExportAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private function runDownloadCommand(ExportConfig $exportConfig, string $csvFileP
// Generate command
$command = $this->generateDownloadSql($exportConfig, $csvFilePath);
$this->logger->info('Downloading data from Snowflake.');
$this->logger->debug(trim($command));
$this->logger->info(trim($command));

// Run
@mkdir($csvFilePath, 0755, true);
Expand Down

0 comments on commit 6791dab

Please sign in to comment.