diff --git a/record.php b/record.php index e8082c0..ac9c175 100644 --- a/record.php +++ b/record.php @@ -41,8 +41,9 @@ if (!function_exists('json_decode')) logger(1, 'json_decode is required but not available', 1, true); // Settings -if (!file_exists(isset($opts['c']) ? $opts['c'] : __DIR__.'/config.json')) - logger(1, 'Config file not found', 1, true); +$config = isset($opts['c']) ? $opts['c'] : __DIR__.'/config.json'); +if (!file_exists($config) + logger(1, 'Config file not found: '.$config, 1, true); if (!$_set = @json_decode(@file_get_contents(__DIR__.'/config.json'))) logger(1, 'Unable to load or parse configuration file', 1, true);