@@ 198-207 (lines=10) @@ | ||
195 | /** |
|
196 | * @param string $message |
|
197 | */ |
|
198 | public function logConfig($message) |
|
199 | { |
|
200 | if ($this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) { |
|
201 | $this->output->writeln('<info> %</info> <comment>' . $message . '</comment> '); |
|
202 | } else { |
|
203 | if($this->progress != null) { |
|
204 | $this->progress->advance(); |
|
205 | } |
|
206 | } |
|
207 | } |
|
208 | ||
209 | /** |
|
210 | * @param string $message |
|
@@ 212-221 (lines=10) @@ | ||
209 | /** |
|
210 | * @param string $message |
|
211 | */ |
|
212 | public function logNotice($message) |
|
213 | { |
|
214 | if ($this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) { |
|
215 | $this->output->writeln('<info> !</info> <comment>' . $message . '</comment> '); |
|
216 | } else { |
|
217 | if($this->progress != null) { |
|
218 | $this->progress->advance(); |
|
219 | } |
|
220 | } |
|
221 | } |
|
222 | ||
223 | /** |
|
224 | * @param $message |