-
Notifications
You must be signed in to change notification settings - Fork 2
Solve loading of letters #2
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -627,6 +627,10 @@ def _send_char(message_c, ngspice_id, user_data): | |
| func = self._logger.warning | ||
| elif 'Note:' in content: | ||
| func = self._logger.info | ||
| elif 'doAnalyses' in content: | ||
| func = self._logger.info | ||
| elif 'run simulation(s) aborted' in content: | ||
| func = self._logger.info | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This seems like it should probably be at least a |
||
| else: | ||
| self._error_in_stderr = True | ||
| func = self._logger.error | ||
|
|
||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd prefer to keep the old import structure if possible, and instead use |
Uh oh!
There was an error while loading. Please reload this page.