Move logging to separate struct

This commit is contained in:
2025-10-14 19:32:15 +02:00
parent cf20f304b3
commit ef3478e2a3
2 changed files with 17 additions and 6 deletions

View File

@@ -311,3 +311,7 @@ func (i *Process) IsRemote() bool {
return len(i.options.Nodes) > 0
}
func (i *Process) GetLogs(num_lines int) (string, error) {
return i.logger.GetLogs(num_lines)
}