diff options
author | Jeff Darcy <jdarcy@redhat.com> | 2017-02-08 15:21:46 -0500 |
---|---|---|
committer | Jeff Darcy <jdarcy@redhat.com> | 2017-02-10 08:17:25 -0500 |
commit | 3ec11e0d2fbff4e8e8cbda0aac6d7b4603722e48 (patch) | |
tree | 642d8c625698e72158a33897f4d9b7a0fa9d2cc6 /libglusterfs/src/gfdb/gfdb_sqlite3.c | |
parent | e02c418ebf2b25cbefc3de83b6fc84215e5917b7 (diff) |
libglusterfs+changetimerecorder: reduce log noise
The logging about translator options is so verbose that it
significantly slows down scalability tests - sometimes even to the
point where it induces timing-related failures. Quiet, please.
Change-Id: If0766e2a80746bba586e67e6019ff7084d68b425
Signed-off-by: Jeff Darcy <jdarcy@redhat.com>
Reviewed-on: https://review.gluster.org/16569
Smoke: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Shyamsundar Ranganathan <srangana@redhat.com>
Reviewed-by: Milind Changire <mchangir@redhat.com>
Diffstat (limited to 'libglusterfs/src/gfdb/gfdb_sqlite3.c')
-rw-r--r-- | libglusterfs/src/gfdb/gfdb_sqlite3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libglusterfs/src/gfdb/gfdb_sqlite3.c b/libglusterfs/src/gfdb/gfdb_sqlite3.c index 4284ed9a69d..70e38855fde 100644 --- a/libglusterfs/src/gfdb/gfdb_sqlite3.c +++ b/libglusterfs/src/gfdb/gfdb_sqlite3.c @@ -1399,7 +1399,7 @@ gf_sqlite3_set_pragma (void *db_conn, char *pragma_key, char *pragma_value) gf_msg (GFDB_STR_SQLITE3, GF_LOG_ERROR, 0, LG_MSG_QUERY_FAILED, "Failed to get %s pragma", pragma_key); } else { - gf_msg (GFDB_STR_SQLITE3, GF_LOG_INFO, 0, 0, + gf_msg (GFDB_STR_SQLITE3, GF_LOG_TRACE, 0, 0, "Value set on DB %s : %s", pragma_key, db_pragma_value); } GF_FREE (db_pragma_value); |