summaryrefslogtreecommitdiff
path: root/vendor/Psr/Log/LogLevel.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-06-20 14:58:09 +0300
committerAndrew Dolgov <[email protected]>2018-06-20 14:58:09 +0300
commit2aaefbfa54447c37a74aaf126f864fac629e9bd5 (patch)
tree971c158cde0e95b7610c0a3d3072c45338cddd7d /vendor/Psr/Log/LogLevel.php
parentd00d515320adb57165f7a69bd1c9afc72d51b87f (diff)
update autoloader to consider namespaces for third party libraries: placed and loaded from vendor/namespace/classpath.php
update readability to a newer implementation based on Readability.js (https://github.com/andreskrey/readability.php) add vendor/Psr/Log interface required for the above
Diffstat (limited to 'vendor/Psr/Log/LogLevel.php')
-rw-r--r--vendor/Psr/Log/LogLevel.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/Psr/Log/LogLevel.php b/vendor/Psr/Log/LogLevel.php
new file mode 100644
index 000000000..9cebcace6
--- /dev/null
+++ b/vendor/Psr/Log/LogLevel.php
@@ -0,0 +1,18 @@
+<?php
+
+namespace Psr\Log;
+
+/**
+ * Describes log levels.
+ */
+class LogLevel
+{
+ const EMERGENCY = 'emergency';
+ const ALERT = 'alert';
+ const CRITICAL = 'critical';
+ const ERROR = 'error';
+ const WARNING = 'warning';
+ const NOTICE = 'notice';
+ const INFO = 'info';
+ const DEBUG = 'debug';
+}