You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
515 B
PHTML
17 lines
515 B
PHTML
2 years ago
|
<?php
|
||
|
include_once "$PROJECT_ROOT/php/utils/logging.php";
|
||
|
|
||
2 years ago
|
// Read the -v|--verbose option increasing logging verbosity to debug.
|
||
|
$options = getopt("vn", ["verbose", "fast", "no-color", "dry-run"]);
|
||
|
if (isset($options["v"]) or isset($options["verbose"])) {
|
||
|
$LOGGING_VERBOSITY = LoggingVerbosity::Debug;
|
||
|
}
|
||
2 years ago
|
|
||
2 years ago
|
$FAST_FETCH_MODE = (isset($options["fast"]));
|
||
2 years ago
|
|
||
2 years ago
|
$DO_DRY_RUN = (isset($options["n"]) || isset($options["dry-run"]));
|
||
|
|
||
|
if (isset($options["no-color"])) {
|
||
|
LoggingVerbosity::$showColor = false;
|
||
|
}
|
||
2 years ago
|
?>
|