diff options
-rwxr-xr-x | src/Logger.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Logger.php b/src/Logger.php index 2da1472..d007b0c 100755 --- a/src/Logger.php +++ b/src/Logger.php @@ -117,6 +117,16 @@ class Logger extends AbstractLogger }
/**
+ * Sets the Log Level Threshold
+ *
+ * @param string $dateFormat Valid format string for date()
+ */
+ public function setLogLevelThreshold($logLevelThreshold)
+ {
+ $this->logLevelThreshold = $logLevelThreshold;
+ }
+
+ /**
* Logs with an arbitrary level.
*
* @param mixed $level
|