Project

General

Profile

Logging » History » Version 1

Rafael Bailon-Ruiz, 2020-10-20 14:07

1 1 Rafael Bailon-Ruiz
h1. Logging
2
3
Critical information about the execution of CAMS should be displayed to the user through the Graphical User Interface. Nevertheless, less important pieces of information that are only useful to developers to diagnose the system can be recorded in logs. Messages can be also displayed in the terminal window.
4
5
p{border: solid 1px #00008B; padding: 1em; margin: 1em; background: #EEF}. %{color:darkblue; font-weight: bold; font-size: large}Info:% *_print_ statements must not be used* to issue messages about the state of CAMS. This is because *1)* Standard text output cannot be traced back to the file and line of code where it has been created; *2)* Messages can not be shown or hidden according to their severity *3)* Messages cannot be easily recorded for further analysis.
6
7
h2. CAMS logging configuration
8
9
Logging in CAMS uses python "logging library":https://docs.python.org/3/library/logging.html
10
11
Python loggers are typically named after the module they are defined in (i.e.: nephelae.database.CloudData) From the "advanced python logging tutorial":https://docs.python.org/3/howto/logging.html#logging-advanced-tutorial
12
13
bq. A good convention to use when naming loggers is to use a module-level logger, in each module which uses logging, named as follows:
14
<pre><code class="python">
15
logger = logging.getLogger(__name__)
16
</code></pre>
17
This means that logger names track the package/module hierarchy, and it’s intuitively obvious where events are logged just from the logger name.
18
19
CAMS uses this scheme with loggers defined per module/file. *Because the CAMS code base layout is one class = one module, the number of logger objects can be big. Check if this extensive logging approach has in impact in performance*
20
21
The recommended logger initialization in CAMS is:
22
23
<pre><code class="python">
24
import logger
25
logger = logging.getLogger(__name__)
26
</code></pre>
27
28
at the begging of every file that logs messages, *located before any module imports* .
29
30
31
h2. Logging messages in CAMS
32
33
34
35
h2. See also
36
37
"Configuring Logging for a Library":https://docs.python.org/3/howto/logging.html#library-config
38
"Good logging practice in Python":https://fangpenlin.com/posts/2012/08/26/good-logging-practice-in-python/