Python Logging by Michael Driscoll
Author:Michael Driscoll
Language: eng
Format: epub
Chapter 7 - Logging from Multiple Modules
74
1
# minimath.py
2
3
import logging
4
5
module_logger = logging.getLogger(__name__)
6
7
8
def add(x, y):
9
module_logger.info("Adding %s and %s", x, y) 10
return x + y
11
12
def subtract(x, y):
13
return x - y
14
15
def multiply(x, y):
16
return x * y
17
18
def divide(x, y):
19
return x / y
Here, you once again create a logger using the __name__ object and add a quick informational log message to the add() function.
Now you are ready to try running main.py. Give it a try. You should see the following output in your terminal or your IDEâs console: Figure 7. Main terminal output
Here, the name emitted from main.py is __main__ while the name emitted from minimath.py is utils.minimath. The latter is a
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Ada | Ajax |
Assembly Language Programming | Borland Delphi |
C & C++ | C# |
CSS | Compiler Design |
Compilers | DHTML |
Debugging | Delphi |
Fortran | Java |
Lisp | Perl |
Prolog | Python |
RPG | Ruby |
Swift | Visual Basic |
XHTML | XML |
XSL |
Hello! Python by Anthony Briggs(9865)
OCA Java SE 8 Programmer I Certification Guide by Mala Gupta(9755)
The Mikado Method by Ola Ellnestam Daniel Brolund(9745)
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(8256)
Sass and Compass in Action by Wynn Netherland Nathan Weizenbaum Chris Eppstein Brandon Mathis(7743)
Test-Driven iOS Development with Swift 4 by Dominik Hauser(7739)
Grails in Action by Glen Smith Peter Ledbrook(7665)
The Well-Grounded Java Developer by Benjamin J. Evans Martijn Verburg(7514)
Windows APT Warfare by Sheng-Hao Ma(6495)
Secrets of the JavaScript Ninja by John Resig Bear Bibeault(6376)
Layered Design for Ruby on Rails Applications by Vladimir Dementyev(6241)
Blueprints Visual Scripting for Unreal Engine 5 - Third Edition by Marcos Romero & Brenden Sewell(6111)
Kotlin in Action by Dmitry Jemerov(5017)
Hands-On Full-Stack Web Development with GraphQL and React by Sebastian Grebe(4295)
Functional Programming in JavaScript by Mantyla Dan(4016)
Solidity Programming Essentials by Ritesh Modi(3836)
WordPress Plugin Development Cookbook by Yannick Lefebvre(3611)
Unity 3D Game Development by Anthony Davis & Travis Baptiste & Russell Craig & Ryan Stunkel(3561)
The Ultimate iOS Interview Playbook by Avi Tsadok(3529)
