summaryrefslogtreecommitdiff
path: root/source3/modules/gpfs.c
diff options
context:
space:
mode:
authorChristian Ambach <christian.ambach@de.ibm.com>2009-09-27 23:34:04 +0200
committerVolker Lendecke <vl@samba.org>2009-09-28 16:37:28 +0200
commitde0f3b657d29a22dc3e20d6e33c15d362800b995 (patch)
tree2f37a144452189d3f18a008080d07e1c675a4433 /source3/modules/gpfs.c
parent830adcd58d6b1fbc3e693762ab2e8a8cfd7ecab3 (diff)
downloadsamba-de0f3b657d29a22dc3e20d6e33c15d362800b995.tar.gz
samba-de0f3b657d29a22dc3e20d6e33c15d362800b995.tar.bz2
samba-de0f3b657d29a22dc3e20d6e33c15d362800b995.zip
changed debuglevel for two messages in the GPFS module from 0 to 10 they spammed the logs on a test machine and they are just debug messages, so let's move them to the level of the other debug messages in the file
Signed-off-by: Christian Ambach <christian.ambach@de.ibm.com>
Diffstat (limited to 'source3/modules/gpfs.c')
-rw-r--r--source3/modules/gpfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/gpfs.c b/source3/modules/gpfs.c
index a8b5576122..e05980888b 100644
--- a/source3/modules/gpfs.c
+++ b/source3/modules/gpfs.c
@@ -160,7 +160,7 @@ int get_gpfs_winattrs(char *pathname,struct gpfs_winattr *attrs)
errno = ENOSYS;
return -1;
}
- DEBUG(0, ("gpfs_get_winattrs_path:open call %s\n",pathname));
+ DEBUG(10, ("gpfs_get_winattrs_path:open call %s\n",pathname));
return gpfs_get_winattrs_path_fn(pathname, attrs);
}
@@ -182,7 +182,7 @@ int set_gpfs_winattrs(char *pathname,int flags,struct gpfs_winattr *attrs)
return -1;
}
- DEBUG(0, ("gpfs_set_winattrs_path:open call %s\n",pathname));
+ DEBUG(10, ("gpfs_set_winattrs_path:open call %s\n",pathname));
return gpfs_set_winattrs_path_fn(pathname,flags, attrs);
}