We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf81124 commit a60e264Copy full SHA for a60e264
cargo_build.py
@@ -193,7 +193,6 @@ def run(self):
193
messages.clear_messages(self.window)
194
p = rust_proc.RustProc()
195
listener = opanel.OutputListener(self.window, self.working_dir)
196
- print('command_info=%r' % self.command_info)
197
try:
198
p.run(self.window, cmd['command'],
199
self.working_dir, listener,
rust/rust_proc.py
@@ -301,7 +301,6 @@ def _read_stdout(self):
301
self._cleanup()
302
raise
303
else:
304
- print('Checking pattern %r to line %r' % (self.json_stop_pattern, line))
305
if self.json_stop_pattern and \
306
re.match(self.json_stop_pattern, line):
307
# Stop looking for JSON open curly bracket.
0 commit comments