diff options
| author | Denton Gentry <dgentry@tailscale.com> | 2023-03-18 12:27:21 -0700 |
|---|---|---|
| committer | Denton Gentry <dgentry@tailscale.com> | 2023-03-19 06:07:45 -0700 |
| commit | c41c4f9fb551e03f1067cc02fdcac9f0d5a810b3 (patch) | |
| tree | 0808043d61b7e33be2da6221170cbffc4d4af9e9 /control/controlclient/auto.go | |
| parent | 82e067e0ffaa64434d1e08d318b682b1403f5c32 (diff) | |
| download | tailscale-azure.tar.xz tailscale-azure.zip | |
debugging azureazure
Signed-off-by: Denton Gentry <dgentry@tailscale.com>
Diffstat (limited to 'control/controlclient/auto.go')
| -rw-r--r-- | control/controlclient/auto.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/control/controlclient/auto.go b/control/controlclient/auto.go index ddd0d4f2b..05250c915 100644 --- a/control/controlclient/auto.go +++ b/control/controlclient/auto.go @@ -475,7 +475,7 @@ func (c *Auto) mapRoutine() { } continue } - c.logf("[v1] mapRoutine: %s", c.state) + c.logf("mapRoutine: %s", c.state) loggedIn := c.loggedIn ctx := c.mapCtx c.mu.Unlock() @@ -488,7 +488,7 @@ func (c *Auto) mapRoutine() { } report := func(err error, msg string) { - c.logf("[v1] %s: %v", msg, err) + c.logf("%s: %v", msg, err) err = fmt.Errorf("%s: %w", msg, err) // don't send status updates for context errors, // since context cancelation is always on purpose. @@ -506,9 +506,9 @@ func (c *Auto) mapRoutine() { select { case <-ctx.Done(): - c.logf("[v1] mapRoutine: context done.") + c.logf("mapRoutine: context done.") case <-c.newMapCh: - c.logf("[v1] mapRoutine: new map needed while idle.") + c.logf("mapRoutine: new map needed while idle.") } } else { // Be sure this is false when we're not inside |
