Skip to content

Commit 8960253

Browse files
Removes DB connection info log calls
1 parent 477c0cb commit 8960253

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/Store/Store.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ public function __construct($connectionDetails = array())
1717
{
1818
$config = SimpleSAML_Configuration::getConfig('module_mongo.php');
1919
$connectionDetails = array_merge($config->toArray(), $connectionDetails);
20-
SimpleSAML_Logger::info('Connection Details:');
21-
SimpleSAML_Logger::info(var_export($connectionDetails, 1));
2220
$this->connection = new MongoClient($this->createConnectionURI($connectionDetails));
2321
$this->db = $this->connection->{$connectionDetails['database']};
2422
}
@@ -48,8 +46,6 @@ static function createConnectionURI($connectionDetails = array()) {
4846
}
4947
}
5048

51-
SimpleSAML_Logger::info("Mongo connection URI: $connectionURI");
52-
5349
return $connectionURI;
5450
}
5551

0 commit comments

Comments
 (0)