I got following message:
No handlers could be found for logger "jsonselect.jsonselect"
When running:
python -m jsonselect itemId < file.json
Adding the following to jsonselect.py helped:
logging.basicConfig()
And of course the problem does not happen when my command is correct and the program does not try to log anything:
python -m jsonselect ".itemId" < file.json
Hi,
I got following message:
No handlers could be found for logger "jsonselect.jsonselect"
When running:
python -m jsonselect itemId < file.json
Adding the following to
jsonselect.py
helped:logging.basicConfig()
And of course the problem does not happen when my command is correct and the program does not try to log anything:
python -m jsonselect ".itemId" < file.json