gnunet

Main GNUnet Logic
Log | Files | Refs | Submodules | README | LICENSE

commit 32096a26ea635d7f8d757319945245cd06d262c4
parent 7328db7a405e5be7dbbee505f4e7ea8af7889c9a
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 10 Aug 2018 21:53:02 +0200

nicer pq logging

Diffstat:
Msrc/pq/pq.c | 6+++++-
Msrc/pq/pq_eval.c | 2+-
Msrc/pq/pq_exec.c | 6+++++-
3 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/src/pq/pq.c b/src/pq/pq.c @@ -11,7 +11,7 @@ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ @@ -43,6 +43,10 @@ GNUNET_PQ_exec_prepared (PGconn *db_conn, unsigned int len; unsigned int i; + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, + "Running prepared statement `%s' on %p\n", + name, + db_conn); /* count the number of parameters */ len = 0; for (i=0;0 != params[i].num_params;i++) diff --git a/src/pq/pq_eval.c b/src/pq/pq_eval.c @@ -11,7 +11,7 @@ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ diff --git a/src/pq/pq_exec.c b/src/pq/pq_exec.c @@ -11,7 +11,7 @@ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ @@ -79,6 +79,10 @@ GNUNET_PQ_exec_statements (PGconn *connection, { PGresult *result; + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, + "Running statement `%s' on %p\n", + es[i].sql, + connection); result = PQexec (connection, es[i].sql); if ( (GNUNET_NO == es[i].ignore_errors) &&