Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changelog.d/6853.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Downgrade log message when error occurs in ansysedt session search loop
3 changes: 2 additions & 1 deletion src/ansys/aedt/core/generic/general_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -754,9 +754,10 @@ def _current_username():
except psutil.NoSuchProcess as e: # pragma: no cover
pyaedt_logger.debug(f"The process exited and cannot be an active session: {e}")
except Exception as e: # pragma: no cover
pyaedt_logger.error(
pyaedt_logger.debug(
f"A(n) {type(e)} error occurred while retrieving information for the active AEDT sessions: {e}"
)
pyaedt_logger.debug(traceback.format_exc())
return return_dict


Expand Down
Loading