瀏覽代碼

vlib: fix debug level

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@51127 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 13 年之前
父節點
當前提交
a1f62fd5d6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/vector/Vlib/open_pg.c

+ 1 - 1
lib/vector/Vlib/open_pg.c

@@ -387,7 +387,7 @@ char *get_key_column(struct Format_info_pg *pg_info)
 	    "AND kcu.constraint_name = tc.constraint_name "
 	    "WHERE t.table_schema = '%s' AND t.table_name = '%s'",
 	    pg_info->schema_name, pg_info->table_name);
-    G_debug(0, "SQL: %s", stmt);
+    G_debug(2, "SQL: %s", stmt);
     
     res = PQexec(pg_info->conn, stmt);
     if (!res || PQresultStatus(res) != PGRES_TUPLES_OK ||