Skip to content
Snippets Groups Projects
Commit 5566ebba authored by Anders Lund's avatar Anders Lund
Browse files

Changing some logging from info to debug level.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1542 44740490-163a-0410-bde0-09ae8108e29a
parent f840a624
No related branches found
No related tags found
No related merge requests found
......@@ -401,7 +401,7 @@ class SimpleSAML_XHTML_Template {
throw new Exception("Inline translation should be string or array. Is " . gettype($translation) . " now!");
}
SimpleSAML_Logger::info('Template: Adding inline language translation for tag [' . $tag . ']');
SimpleSAML_Logger::debug('Template: Adding inline language translation for tag [' . $tag . ']');
$this->langtext[$tag] = $translation;
}
......@@ -425,7 +425,7 @@ class SimpleSAML_XHTML_Template {
$lang = $this->readDictionaryFile($filebase . $file);
SimpleSAML_Logger::info('Template: Merging language array. Loading [' . $file . ']');
SimpleSAML_Logger::debug('Template: Merging language array. Loading [' . $file . ']');
$this->langtext = array_merge($this->langtext, $lang);
}
......@@ -439,7 +439,7 @@ class SimpleSAML_XHTML_Template {
private function readDictionaryFile($filename) {
assert('is_string($filename)');
SimpleSAML_Logger::info('Template: Reading [' . $filename . ']');
SimpleSAML_Logger::debug('Template: Reading [' . $filename . ']');
if (!file_exists($filename)) {
SimpleSAML_Logger::error($_SERVER['PHP_SELF'].' - Template: Could not find template file [' . $this->template . '] at [' . $filename . ']');
......@@ -524,7 +524,7 @@ class SimpleSAML_XHTML_Template {
/* Not found in current theme. */
SimpleSAML_Logger::info($_SERVER['PHP_SELF'].' - Template: Could not find template file [' .
SimpleSAML_Logger::debug($_SERVER['PHP_SELF'].' - Template: Could not find template file [' .
$template . '] at [' . $filename . '] - now trying the base template');
......@@ -553,4 +553,4 @@ class SimpleSAML_XHTML_Template {
}
?>
\ No newline at end of file
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment