From 6b94a9b6588112328fa2738b1c149b48908f5029 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sat, 5 Sep 2015 00:34:21 -0600 Subject: clean up logging --- src/nslcd_proto/io.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nslcd_proto/io.go') diff --git a/src/nslcd_proto/io.go b/src/nslcd_proto/io.go index 321a87c..87783ac 100644 --- a/src/nslcd_proto/io.go +++ b/src/nslcd_proto/io.go @@ -70,7 +70,7 @@ func write(fd io.Writer, data interface{}) { write(fd, v.Field(i).Interface()) } default: - panic("Invalid structure for NSLCD protocol data") + panic(fmt.Sprintf("Invalid structure to write NSLCD protocol data from: %T ( %#v )", data, data)) } } } @@ -139,7 +139,7 @@ func read(fd io.Reader, data interface{}) { read(fd, v.Field(i).Interface()) } default: - panic("Invalid structure for NSLCD protocol data") + panic(fmt.Sprintf("The argument to nslcd_proto.read() must be a pointer: %T ( %#v )", data, data)) } } } -- cgit v1.2.3-54-g00ecf