posture: stop logging serial numbers

Logging serial numbers every time they are read might have been useful
early on, but seems unnecessary now.

Updates #5902

Signed-off-by: Anton Tolchanov <anton@tailscale.com>
This commit is contained in:
Anton Tolchanov 2024-08-30 11:00:48 +01:00 committed by Anton Tolchanov
parent 959285e0c5
commit 109d0891e1

View File

@ -98,8 +98,5 @@ func GetSerialNumbers(logf logger.Logf) ([]string, error) {
} }
} }
} }
logf("got serial numbers %v", serials)
return serials, nil return serials, nil
} }