From 5fdad87477b3a74b26e6503085554834910692e0 Mon Sep 17 00:00:00 2001 From: Dustin Oprea Date: Sat, 16 May 2020 01:46:26 -0400 Subject: [PATCH] exif-read-tool/main.go: Log size of EXIF blob Remember that this is typically from the EXIF signature to the end of the file. --- v2/exif-read-tool/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v2/exif-read-tool/main.go b/v2/exif-read-tool/main.go index 6279dbe..fdc2e9a 100644 --- a/v2/exif-read-tool/main.go +++ b/v2/exif-read-tool/main.go @@ -97,6 +97,8 @@ func main() { log.Panic(err) } + mainLogger.Debugf(nil, "EXIF blob is (%d) bytes.", len(rawExif)) + // Run the parse. im := exif.NewIfdMappingWithStandard()