Skip to content

Commit a60e264

Browse files
committed
Remove debug print left behind.
1 parent cf81124 commit a60e264

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

cargo_build.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ def run(self):
193193
messages.clear_messages(self.window)
194194
p = rust_proc.RustProc()
195195
listener = opanel.OutputListener(self.window, self.working_dir)
196-
print('command_info=%r' % self.command_info)
197196
try:
198197
p.run(self.window, cmd['command'],
199198
self.working_dir, listener,

rust/rust_proc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,6 @@ def _read_stdout(self):
301301
self._cleanup()
302302
raise
303303
else:
304-
print('Checking pattern %r to line %r' % (self.json_stop_pattern, line))
305304
if self.json_stop_pattern and \
306305
re.match(self.json_stop_pattern, line):
307306
# Stop looking for JSON open curly bracket.

0 commit comments

Comments
 (0)