come mostrare admin / reports / dblog nel terminale (cli)


14

Durante lo sviluppo mi piace molto uno schermo dedicato con tutti i messaggi di registro di drupal. Lavorare su mac o * nix creando una nuova finestra di terminale e fare una coda -f sul file di registro sarebbe davvero bello. Quindi posso fare una coda -f sull'apache error.log ma voglio mostrare il registro di drupal che è mostrato in admin / reports / dblog Dove posso trovarlo e o è possibile lasciarlo in uscita su una schermata del terminale e se é cosi, come?


@dinesh grazie per i tag! Quello in cui avrei creato i tag esatti ma mancando 19 rep;)
VOLO

Risposte:


29

Puoi usare drush per fare questo:

$ 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 ha troppe opzioni per mostrarle completamente qui, ma questi sono gli esempi:

 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
Grazie drush watchdog-show --tail --full --count=50è quello che sto usando ora :)
FLY

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.