summaryrefslogtreecommitdiffstats
path: root/system/core/Output.php
diff options
context:
space:
mode:
authorsprakash4 <sprakash4@intuit.com>2016-02-27 01:02:07 +0100
committersprakash4 <sprakash4@intuit.com>2016-02-27 01:02:07 +0100
commitfa34429e85b4bf452ba595072124a884ca3e8b89 (patch)
treecfe9719ad1079c3ada40c31720558cc6852067fe /system/core/Output.php
parent97d0878bd3bf3c90364f85ad541c6a078b93c3f1 (diff)
Downgraded log level for some pesky messages to INFO
Diffstat (limited to 'system/core/Output.php')
-rw-r--r--system/core/Output.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/Output.php b/system/core/Output.php
index ec9c21b91..6e0b4e724 100644
--- a/system/core/Output.php
+++ b/system/core/Output.php
@@ -492,7 +492,7 @@ class CI_Output {
echo $output;
log_message('info', 'Final output sent to browser');
- log_message('debug', 'Total execution time: '.$elapsed);
+ log_message('info', 'Total execution time: '.$elapsed);
return;
}
@@ -529,7 +529,7 @@ class CI_Output {
}
log_message('info', 'Final output sent to browser');
- log_message('debug', 'Total execution time: '.$elapsed);
+ log_message('info', 'Total execution time: '.$elapsed);
}
// --------------------------------------------------------------------