ターミナルでadmin / reports / dblogを表示する方法(cli)


14

開発中は、すべてのdrupalログメッセージが表示される専用の画面が本当に好きです。Macまたは* nixで作業して新しいターミナルウィンドウを作成し、ログファイルでtail -fを実行すると、本当に便利です。だから私はapache error.logでtail -fを行うことができますが、admin / reports / dblogに表示されるdrupalログを表示したいのですが、どこで見つけることができますか、端末画面に出力できるようにしますもしそうならどのように?


@dineshタグに感謝!私が作成する場所の正確なタグそれが、19担当者を逃す;)
FLY

回答:


29

これを行うには、drushを使用できます。

$ drush help | grep watchdog
 watchdog-delete       Delete watchdog messages.
 watchdog-list         Show available message types and severity levels. A
 (wd-list)             prompt will ask for a choice to show watchdog messages.
 watchdog-show         Show watchdog messages.

drush watchdog-show ここに完全に表示するにはオプションが多すぎますが、これらは例です:

 drush watchdog-show                       Show a listing of most recent 10
                                           messages.
 drush watchdog-show 64                    Show in detail message with id 64.
 drush watchdog-show "cron run succesful"  Show a listing of most recent 10
                                           messages containing the string "cron
                                           run succesful".
 drush watchdog-show --count=46            Show a listing of most recent 46
                                           messages.
 drush watchdog-show --severity=notice     Show a listing of most recent 10
                                           messages with a severity of notice.
 drush watchdog-show --type=php            Show a listing of most recent 10
                                           messages of type php.
 drush watchdog-show --tail --full         Show a listing of most recent 10
                                           messages with extended information
                                           about each one and continue showing
                                           messages as they are registered in
                                           the watchdog.
 drush watchdog-show --tail                Do a tail of the watchdog with a
 --sleep-delay=2                           delay of two seconds between each
                                           poll to the database.

4
おかげdrush watchdog-show --tail --full --count=50で今私が使用しているものです:)
FLY

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.