Wahrscheinlich eine dumme Frage. Experimentieren mit Mongo Shell.
Ich möchte so etwas tun wie:
matt@linuxvm:~/mongodb-linux-i686-1.2.3/bin$ ./mongo
MongoDB shell version: 1.2.3
url: test
connecting to: test
Thu Feb 25 20:57:47 connection accepted from 127.0.0.1:37987 #3
type "help" for help
> function test() { debug.log("hello") }
> test()
Thu Feb 25 20:58:06 JS Error: ReferenceError: debug is not defined (shell):0
Mit anderen Worten, wie kann ich bei der Auswertung von JS-Funktionen in der Mongo-Shell auf die Konsole ausgeben? Ich beabsichtige ein Admin / Populate-Skript, mit dem ich einige nette Informationen ausgeben möchte.
Ich habe console.log, debug.log ausprobiert und die offensichtlichen protokolliert.