diff options
author | 2018-11-10 20:03:03 +0100 | |
---|---|---|
committer | 2018-11-10 20:03:05 +0100 | |
commit | c63af2e7ad34c7a900259eddc0c65877ba3cfeb5 (patch) | |
tree | 247ad9fd1636a3bf3665902097e9995a95beb2da /lib/rssbridge.php | |
parent | 9379854f7a41a52b34b12fb7cd086a4cda15dbbe (diff) | |
download | rss-bridge-c63af2e7ad34c7a900259eddc0c65877ba3cfeb5.tar.gz rss-bridge-c63af2e7ad34c7a900259eddc0c65877ba3cfeb5.tar.zst rss-bridge-c63af2e7ad34c7a900259eddc0c65877ba3cfeb5.zip |
core: Add separate Debug class
Replaces 'debugMessage' by specialized debug function 'Debug::log'.
This function takes the same arguments as the previous 'debugMessage'.
A separate Debug class allows for further optimization and separation
of concern.
Diffstat (limited to 'lib/rssbridge.php')
-rw-r--r-- | lib/rssbridge.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/rssbridge.php b/lib/rssbridge.php index 458300fb..ac70580b 100644 --- a/lib/rssbridge.php +++ b/lib/rssbridge.php @@ -15,6 +15,7 @@ require_once PATH_LIB . 'CacheInterface.php'; require_once PATH_LIB . 'FormatInterface.php'; // Classes +require_once PATH_LIB . 'Debug.php'; require_once PATH_LIB . 'Exceptions.php'; require_once PATH_LIB . 'Format.php'; require_once PATH_LIB . 'FormatAbstract.php'; |