From c7dda9de966016caa318182ff9d87a9d56eac48a Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Sat, 20 Aug 2016 18:08:28 +0100 Subject: [PATCH] A quick & easy way to see the logs --- .../management/commands/document_logs.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/documents/management/commands/document_logs.py diff --git a/src/documents/management/commands/document_logs.py b/src/documents/management/commands/document_logs.py new file mode 100644 index 000000000..60bcc3bee --- /dev/null +++ b/src/documents/management/commands/document_logs.py @@ -0,0 +1,15 @@ +from django.core.management.base import BaseCommand + +from documents.models import Log + +from ...mixins import Renderable + + +class Command(BaseCommand): + + help = "A quick & dirty way to see what's in the logs" + + def handle(self, *args, **options): + for l in Log.objects.order_by("pk"): + print(l) +