diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-07-11 02:59:35 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-07-11 02:59:40 +0300 |
commit | 864e73cdc75a2fb0e4fad500f649dae2343c10a8 (patch) | |
tree | 6ce6762c6be72c98592a32fe0bed4f2ce751d544 /engine | |
parent | cb13ea239b9f1ca6aea43125d5694d5a55dcd287 (diff) |
rewrite css and js assets building
Diffstat (limited to 'engine')
-rw-r--r-- | engine/RequestDispatcher.php | 4 | ||||
-rw-r--r-- | engine/logging.php | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/engine/RequestDispatcher.php b/engine/RequestDispatcher.php index 3c3f684..ec31516 100644 --- a/engine/RequestDispatcher.php +++ b/engine/RequestDispatcher.php @@ -39,8 +39,8 @@ class RequestDispatcher { } $skin = new Skin(); - $skin->static[] = '/css/common.css'; - $skin->static[] = '/js/common.js'; + $skin->static[] = 'css/common.css'; + $skin->static[] = 'js/common.js'; $lang = LangData::getInstance(); $skin->addLangKeys($lang->search('/^theme_/')); diff --git a/engine/logging.php b/engine/logging.php index 1bc946b..24803cf 100644 --- a/engine/logging.php +++ b/engine/logging.php @@ -72,6 +72,9 @@ class logging { } public static function logCustom(LogLevel $level, ...$args): void { + global $config; + if (!$config['is_dev'] && $level == LogLevel::DEBUG) + return; self::write($level, self::strVars($args)); } |