diff options
author | Andrey Andreev <narf@devilix.net> | 2016-02-27 12:14:51 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-02-27 12:14:51 +0100 |
commit | ed49c3ba41cdbcc61df153ddf94eab62abd64ede (patch) | |
tree | cfe9719ad1079c3ada40c31720558cc6852067fe /system/core/Utf8.php | |
parent | 97d0878bd3bf3c90364f85ad541c6a078b93c3f1 (diff) | |
parent | fa34429e85b4bf452ba595072124a884ca3e8b89 (diff) |
Merge pull request #4489 from sprakashtd/develop
Downgraded log level for some pesky messages to INFO
Diffstat (limited to 'system/core/Utf8.php')
-rw-r--r-- | system/core/Utf8.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/Utf8.php b/system/core/Utf8.php index f2f42e6ca..93c611675 100644 --- a/system/core/Utf8.php +++ b/system/core/Utf8.php @@ -66,12 +66,12 @@ class CI_Utf8 { ) { define('UTF8_ENABLED', TRUE); - log_message('debug', 'UTF-8 Support Enabled'); + log_message('info', 'UTF-8 Support Enabled'); } else { define('UTF8_ENABLED', FALSE); - log_message('debug', 'UTF-8 Support Disabled'); + log_message('info', 'UTF-8 Support Disabled'); } log_message('info', 'Utf8 Class Initialized'); |