Print the errno from a fail in the journal

When a file access fails, print the errno of the failure in the same
journal entry the filename is already printed.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I20d268f563cf1bbfa2a5f9780c02998d075f5275
diff --git a/sensor.cpp b/sensor.cpp
index aa2ff35..3c1bbe5 100644
--- a/sensor.cpp
+++ b/sensor.cpp
@@ -230,8 +230,9 @@
                 metadata::CALLOUT_ERRNO(e.code().value()),
                 metadata::CALLOUT_DEVICE_PATH(_devPath.c_str()));
 
-            log<level::INFO>(
-                fmt::format("Failing sysfs file: {}", sysfsFullPath).c_str());
+            log<level::INFO>(fmt::format("Failing sysfs file: {} errno {}",
+                                         sysfsFullPath, e.code().value())
+                                 .c_str());
         }
     }