Wei Lu Liu
unread,Mar 25, 2012, 10:47:03 PM3/25/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to reviewboard-dev
Hello,
When I'm writing a admin command that performs some SQL and test it
out with "./reviewboard/manage.py command_name", it keeps outputting
the sentences like below. They look like SQL operations that happen in
the background, but I really don't want them to appear in the terminal
as they mess up the useful information that I want the user to see.
2012-03-25 19:38:14,113 - DEBUG - (0.000) SELECT "auth_user"."id",
"auth_user"."username", "auth_user"."first_name",
"auth_user"."last_name", "auth_user"."email", "auth_user"."password",
"auth_user"."is_staff", "auth_user"."is_active",
"auth_user"."is_superuser", "auth_user"."last_login",
"auth_user"."date_joined" FROM "auth_user" INNER JOIN
"reviews_reviewrequest_target_people" ON ("auth_user"."id" =
"reviews_reviewrequest_target_people"."user_id") WHERE
"reviews_reviewrequest_target_people"."reviewrequest_id" = 1 ;
args=(1,)
Do these sentences imply some errors? How to mute them?
Thanks,
Wei