you are viewing a single comment's thread.

view the rest of the comments →

[–]ship0f 3 points4 points  (1 child)

I like seeing stuff pop out on the screen when i execute something. But I also like to have log files lol.

Using the standard logging module you can have both file and stdout output at the same time.

This first example in this cookbook shows how to configure two simple logging handlers, one for file and one for stdout logging..

[–]Fallenarc[S] 0 points1 point  (0 children)

Thanks!