Skip to content

Instantly share code, notes, and snippets.

@tairov
Last active December 19, 2015 22:39
Show Gist options
  • Save tairov/6029090 to your computer and use it in GitHub Desktop.
Save tairov/6029090 to your computer and use it in GitHub Desktop.
php MongoClient
MongoLog::setLevel(MongoLog::ALL);
MongoLog::setModule(MongoLog::ALL);
MongoLog::setCallback('printLogs');
function printLogs($m, $l, $mesg)
{
echo $m, ' ', $l, ': ', $mesg, "\n";
}
MongoClient::getConnections();
MongoClient::getHosts();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment