summaryrefslogtreecommitdiff
path: root/pkg/specgen/generate/config_linux.go
diff options
context:
space:
mode:
authorMatthew Heon <mheon@redhat.com>2020-08-24 11:48:53 -0400
committerMatthew Heon <matthew.heon@pm.me>2020-08-27 15:05:12 -0400
commit2ac37f10b4e87dd360b6c6b6a20524a4c414b916 (patch)
tree42fb024ca6c13563806cd82a8603bc967e133e92 /pkg/specgen/generate/config_linux.go
parent72c5b35ea5db44ca1c81a688d90f5c3aa8f8262e (diff)
downloadpodman-2ac37f10b4e87dd360b6c6b6a20524a4c414b916.tar.gz
podman-2ac37f10b4e87dd360b6c6b6a20524a4c414b916.tar.bz2
podman-2ac37f10b4e87dd360b6c6b6a20524a4c414b916.zip
Fix up some error messages
We have a lot of 'cannot stat %s' errors in our codebase. These are terrible and confusing and utterly useless without context. Add some context to a few of them so we actually know what part of the code is failing. Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'pkg/specgen/generate/config_linux.go')
-rw-r--r--pkg/specgen/generate/config_linux.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/specgen/generate/config_linux.go b/pkg/specgen/generate/config_linux.go
index 35508c023..1d5dcd8e7 100644
--- a/pkg/specgen/generate/config_linux.go
+++ b/pkg/specgen/generate/config_linux.go
@@ -90,7 +90,7 @@ func DevicesFromPath(g *generate.Generator, devicePath string) error {
}
st, err := os.Stat(resolvedDevicePath)
if err != nil {
- return errors.Wrapf(err, "cannot stat %s", devicePath)
+ return errors.Wrapf(err, "cannot stat device path %s", devicePath)
}
if st.IsDir() {
found := false