Skip to content

Commit

Permalink
Merge pull request #247 from Cray-HPE/CRAYSAT-1890-fix-waiting-logger
Browse files Browse the repository at this point in the history
CRAYSAT-1890: Fix `sat.waiting` logger
  • Loading branch information
haasken-hpe authored Aug 2, 2024
2 parents 9fecd86 + 4cd4178 commit 893c8a8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.29.1] - 2024-08-02

### Fixed
- Fixed a logging issue with messages logged by the `waiting` module used in
`sat bootsys` and other commands, so that log messages emitted by this module
are correctly handled and formatted.

## [3.29.0] - 2024-08-01

### Changed
Expand Down
4 changes: 2 additions & 2 deletions sat/waiting.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# MIT License
#
# (C) Copyright 2020-2022 Hewlett Packard Enterprise Development LP
# (C) Copyright 2020-2022, 2024 Hewlett Packard Enterprise Development LP
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
Expand Down Expand Up @@ -34,7 +34,7 @@


inf = inflect.engine()
LOGGER = logging.getLogger(__file__)
LOGGER = logging.getLogger(__name__)


class WaitingFailure(Exception):
Expand Down

0 comments on commit 893c8a8

Please sign in to comment.