Skip to content

Changes

Started by timer
Started 1 day 13 hr ago
Queued 7 min 58 sec
Took 13 min on built-in

Summary

  1. pySimLogger: user __name__ of the module when creating a new logger (details)
  2. transport/init: use PySimLogger to print messages (details)
Commit 2b42877389e9f0cdbc831f7b06ed5917670bb138 by pmaier@sysmocom.de
pySimLogger: user __name__ of the module when creating a new logger

At the moment we use random identifiers as names when we create a
new logger for pySimLogger. Let's switch to consistently use the
module name here. For the top level modules let's use the program
name so that it will show up in the log instead of __init__.

Change-Id: I49a9beb98845f66247edd42ed548980c97a7151a
The file was modifiedtests/unittests/test_log.py
The file was modifiedpySim-shell.py
The file was modifiedpySim/runtime.py
The file was modifiedcontrib/es2p_server.py
The file was modifiedpySim/card_key_provider.py
The file was modifiedpySim/log.py
The file was modifiedcontrib/csv-to-pgsql.py
Commit a4895702d7b5feacb2430ea2491a1449abf1728d by pmaier@sysmocom.de
transport/init: use PySimLogger to print messages

The module still uses print to output information. Let's replace
those print calls with the more modern PySimLogger method calls.

Change-Id: I2e2ec2b84f3b84dbd8a029ae9bb64b7a96ddbde3
The file was modifiedpySim/transport/__init__.py