From de0f3b657d29a22dc3e20d6e33c15d362800b995 Mon Sep 17 00:00:00 2001 From: Christian Ambach Date: Sun, 27 Sep 2009 23:34:04 +0200 Subject: 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 --- source3/modules/gpfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/modules') 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); } -- cgit