diff options
author | Christian Ambach <christian.ambach@de.ibm.com> | 2009-09-27 23:34:04 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-09-28 16:37:28 +0200 |
commit | de0f3b657d29a22dc3e20d6e33c15d362800b995 (patch) | |
tree | 2f37a144452189d3f18a008080d07e1c675a4433 /source3/modules | |
parent | 830adcd58d6b1fbc3e693762ab2e8a8cfd7ecab3 (diff) | |
download | samba-de0f3b657d29a22dc3e20d6e33c15d362800b995.tar.gz samba-de0f3b657d29a22dc3e20d6e33c15d362800b995.tar.xz 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')
-rw-r--r-- | source3/modules/gpfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/gpfs.c b/source3/modules/gpfs.c index a8b5576122a..e05980888b8 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); } |