Close logs pipes and catch write errors
Signed-off-by: Alexandr Morozov <lk4d4@docker.com>
This commit is contained in:
parent
f87a053913
commit
be805c6709
1 changed files with 3 additions and 1 deletions
|
@ -40,6 +40,8 @@ func WriteLog(src io.Reader, dst io.Writer, format string) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
fmt.Fprintf(dst, "%s", line)
|
if _, err := io.WriteString(dst, line); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue