Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Side by Side Diff: milo/logs/logs.go

Issue 2949783002: [milo] appengine/* -> * (Closed)
Patch Set: rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « milo/logs/README.md ('k') | milo/logs/main.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 package main 1 package logs
2 2
3 import ( 3 import (
4 "errors" 4 "errors"
5 "fmt" 5 "fmt"
6 "io" 6 "io"
7 "log" 7 "log"
8 "net/http" 8 "net/http"
9 "strings" 9 "strings"
10 "sync" 10 "sync"
11 "time" 11 "time"
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 if content == nil { 144 if content == nil {
145 break 145 break
146 } 146 }
147 for _, line := range content.Lines { 147 for _, line := range content.Lines {
148 fmt.Fprint(w, line.Value) 148 fmt.Fprint(w, line.Value)
149 fmt.Fprint(w, line.Delimiter) 149 fmt.Fprint(w, line.Delimiter)
150 } 150 }
151 } 151 }
152 return nil 152 return nil
153 } 153 }
OLDNEW
« no previous file with comments | « milo/logs/README.md ('k') | milo/logs/main.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698