Skip to content

Commit f488115

Browse files
committed
fix: add database name to console output
1 parent 367172e commit f488115

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/Database/ExportDatabaseCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ protected function perform(InputInterface $input, OutputInterface $output)
113113
sleep(1);
114114
}
115115

116-
$output->infoWithDelayWarning('Exporting database');
116+
$output->infoWithDelayWarning(sprintf('Exporting "<comment>%s</comment>" database', $name));
117117

118118
Process::runShellCommandline(sprintf('mysqldump --quick --single-transaction --default-character-set=utf8mb4 --host=%s --port=%s --user=%s --password=%s %s | gzip > %s', $host, $port, $user, $password, $name, $filename));
119119

0 commit comments

Comments
 (0)