]> arthur.barton.de Git - netatalk.git/commitdiff
Better logging
authorFrank Lahm <franklahm@googlemail.com>
Wed, 14 Jul 2010 17:39:19 +0000 (19:39 +0200)
committerFrank Lahm <franklahm@googlemail.com>
Wed, 14 Jul 2010 17:39:19 +0000 (19:39 +0200)
libatalk/adouble/ad_open.c

index 90d3e3627ec02459fca16673aa2aa02cbf2aeb9d..f6399712656103823eb55f6e44a005472bd91b0e 100644 (file)
@@ -1080,8 +1080,8 @@ ad_mkdir( const char *path, int mode)
     int st_invalid;
     struct stat stbuf;
 
-    LOG(log_debug, logtype_default, "ad_mkdir: creating ad-directory '%s/%s' with mode %04o",
-        getcwdpath(), path, mode);
+    LOG(log_debug, logtype_default, "ad_mkdir(\"%s\", %04o) {cwd: \"%s\"}",
+        path, mode, getcwdpath());
 
     st_invalid = ad_mode_st(path, &mode, &stbuf);
     ret = mkdir( path, mode );
@@ -1383,7 +1383,8 @@ int ad_open( const char *path, int adflags, int oflags, int mode, struct adouble
              * here.
              * if ((oflags & O_CREAT) ==> (oflags & O_RDWR)
              */
-            LOG(log_debug, logtype_default, "ad_open: creating new adouble file: %s/%s", getcwdpath(), ad_p);
+            LOG(log_debug, logtype_default, "ad_open(\"%s\"): {cwd: \"%s\"} creating adouble file",
+                ad_p, getcwdpath());
             admode = mode;
             errno = 0;
             st_invalid = ad_mode_st(ad_p, &admode, &st_dir);