Avoid conflicts when composer is wrapped in older sf versions, fixes #1835
parent
73f4ce59ca
commit
37894f66a1
|
@ -79,7 +79,7 @@ class ConsoleIO implements IOInterface
|
||||||
*/
|
*/
|
||||||
public function isVeryVerbose()
|
public function isVeryVerbose()
|
||||||
{
|
{
|
||||||
return $this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERY_VERBOSE;
|
return $this->output->getVerbosity() >= 3; // OutputInterface::VERSOBITY_VERY_VERBOSE
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -87,7 +87,7 @@ class ConsoleIO implements IOInterface
|
||||||
*/
|
*/
|
||||||
public function isDebug()
|
public function isDebug()
|
||||||
{
|
{
|
||||||
return $this->output->getVerbosity() >= OutputInterface::VERBOSITY_DEBUG;
|
return $this->output->getVerbosity() >= 4; // OutputInterface::VERBOSITY_DEBUG
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue