diff --git a/PySpice/Spice/NgSpice/Shared.py b/PySpice/Spice/NgSpice/Shared.py index bf4cdb52..0c3bb097 100644 --- a/PySpice/Spice/NgSpice/Shared.py +++ b/PySpice/Spice/NgSpice/Shared.py @@ -625,7 +625,12 @@ def _send_char(message_c, ngspice_id, user_data): self._stderr.append(content) if content.startswith('Warning:'): func = self._logger.warning - # elif content.startswith('Warning:'): + elif content.startswith('Note:'): + func = self._logger.info + elif content.startswith('Trying'): + func = self._logger.info + elif content.startswith('Supplies reduced'): + func = self._logger.info else: self._error_in_stderr = True func = self._logger.error