(entry, log, running)
| 71 | |
| 72 | |
| 73 | def to_long_execution_log(entry, log, running): |
| 74 | external_entry = _translate_history_entry(entry, running) |
| 75 | external_entry['command'] = entry.command |
| 76 | external_entry['log'] = log |
| 77 | external_entry['outputFormat'] = entry.output_format |
| 78 | |
| 79 | return external_entry |
| 80 | |
| 81 | |
| 82 | def _translate_history_entry(entry, running): |