Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

handle ngspice notes and Trying in stderr #313

Open
wants to merge 3 commits into
base: devel
Choose a base branch
from
Open
Changes from 1 commit
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
Next Next commit
handle ngspice notes and Trying in stderr
  • Loading branch information
volpx committed Feb 20, 2022
commit 1e69a16fa55e4c141763f46ed3ecdea17e22ce2e
5 changes: 4 additions & 1 deletion PySpice/Spice/NgSpice/Shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,10 @@ 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.note
elif content.startswith('Trying'):
func = self._logger.note
else:
self._error_in_stderr = True
func = self._logger.error
Expand Down