Added logging call to \ncc\Managers > ConfigurationManager > updateProperty()

https://git.n64.cc/nosial/ncc/-/issues/29
This commit is contained in:
Netkas 2022-12-07 23:20:38 -05:00
parent 87e67564fa
commit a581183972

View file

@ -12,6 +12,7 @@
use ncc\Exceptions\InvalidScopeException;
use ncc\Exceptions\IOException;
use ncc\ThirdParty\Symfony\Yaml\Yaml;
use ncc\Utilities\Console;
use ncc\Utilities\Functions;
use ncc\Utilities\IO;
use ncc\Utilities\PathFinder;
@ -88,6 +89,7 @@
*/
public function getProperty(string $property)
{
Console::outDebug($property);
$current_selection = $this->getConfiguration();
foreach(explode('.', strtolower($property)) as $property)
{