Skip to content

Commit

Permalink
add output of version information
Browse files Browse the repository at this point in the history
  • Loading branch information
tillsteinbach committed Aug 15, 2021
1 parent 788ab59 commit 96b868f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
- No unreleased changes so far

## [0.14.1] - 2021-08-15
### Added
- Output of version information after startup

## [0.14.0] - 2021-08-15
### Added
- Possibility to set caching time for picture downloads seperately
Expand Down Expand Up @@ -177,7 +181,8 @@ Send empty message when topic is disabled
## [0.1.0] - 2021-05-27
Initial release

[unreleased]: https://github.com/tillsteinbach/WeConnect-mqtt/compare/v0.14.0...HEAD
[unreleased]: https://github.com/tillsteinbach/WeConnect-mqtt/compare/v0.14.1...HEAD
[0.14.1]: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.14.1
[0.14.0]: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.14.0
[0.13.2]: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.13.2
[0.13.1]: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.13.1
Expand Down
1 change: 1 addition & 0 deletions weconnect_mqtt/weconnect_mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ def main(): # noqa: C901 # pylint: disable=too-many-branches,too-many-statemen
logLevel = min(len(LOG_LEVELS) - 1, max(logLevel + adjustment, 0))

logging.basicConfig(level=LOG_LEVELS[logLevel])
LOG.info('WeConnect-mqtt %s (using WeConnect-python %s)', __version__, __weconnect_version__)

usetls = args.use_tls
if args.cacerts:
Expand Down

0 comments on commit 96b868f

Please sign in to comment.