mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
don't clear line when navigation is disabled
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
c9e070f0f6
commit
ca734ce565
@ -110,7 +110,9 @@ func (l *logConsumer) write(w io.Writer, container, message string) {
|
||||
p := l.getPresenter(container)
|
||||
timestamp := time.Now().Format(jsonmessage.RFC3339NanoFixed)
|
||||
for _, line := range strings.Split(message, "\n") {
|
||||
ClearLine()
|
||||
if KeyboardManager != nil {
|
||||
ClearLine()
|
||||
}
|
||||
if l.timestamp {
|
||||
fmt.Fprintf(w, "%s%s%s\n", p.prefix, timestamp, line)
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user