| Index: logdog/common/types/streamaddr.go
|
| diff --git a/logdog/common/types/streamaddr.go b/logdog/common/types/streamaddr.go
|
| index f952ff1bd4ffbaf419c2421935561cef70cc1a44..2dca9dcf9168b77f3d30b60559d5f7b4cb1973d3 100644
|
| --- a/logdog/common/types/streamaddr.go
|
| +++ b/logdog/common/types/streamaddr.go
|
| @@ -18,13 +18,13 @@ const logDogURLScheme = "logdog"
|
| // StreamAddr is a fully-qualified LogDog stream address.
|
| type StreamAddr struct {
|
| // Host is the LogDog host.
|
| - Host string
|
| + Host string `json:"host,omitempty"`
|
|
|
| // Project is the LUCI project name that this log belongs to.
|
| - Project cfgtypes.ProjectName
|
| + Project cfgtypes.ProjectName `json:"project,omitempty"`
|
|
|
| // Path is the LogDog stream path.
|
| - Path StreamPath
|
| + Path StreamPath `json:"path,omitempty"`
|
| }
|
|
|
| var _ flag.Value = (*StreamAddr)(nil)
|
|
|