In C++, I can print debug output like this:
printf(
"FILE: %s, FUNC: %s, LINE: %d, LOG: %s\n",
__FILE__,
__FUNCTION__,
__LINE__,
logmessage
);
How can I do something similar in Python?
|
In C++, I can print debug output like this:
How can I do something similar in Python? |
||||
|
There is a module named Example usage:
However, please remember that there is an easier way to obtain the name of the currently executing file:
|
||||
|
|
|
For example
There's more here http://docs.python.org/library/inspect.html |
|||
|
|
|
|||
|
|
printfunction in C++. – Lightness Races in Orbit Jul 25 '11 at 1:35