Skip to content

Commit 5da5b1c

Browse files
committed
Don't error on halt
1 parent 6155e97 commit 5da5b1c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

PySpice/Spice/NgSpice/Shared.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -633,6 +633,10 @@ def _send_char(message_c, ngspice_id, user_data):
633633
func = self._logger.warning
634634
elif content.startswith('Using'): # Ignore "Using ... as Direct Linear Solver" messages
635635
func = self._logger.debug
636+
elif content.startswith('doAnalyses:'):
637+
func = self._logger.debug
638+
elif content.startswith('run simulation interrupted'):
639+
func = self._logger.debug
636640
else:
637641
self._error_in_stderr = True
638642
func = self._logger.error

0 commit comments

Comments
 (0)