From: Nathan Binkert Date: Fri, 23 Jul 2004 19:52:28 +0000 (-0400) Subject: add a trace mechanism to trace sql stuff X-Git-Tag: m5_1.0_tutorial~218^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=095851dbb22a53e082c2a35c01744ffe94515ad8;p=gem5.git add a trace mechanism to trace sql stuff base/mysql.hh: Trace sql queries base/traceflags.py: Add a trace flag to trace sql queries --HG-- extra : convert_revision : dc25abb474db7334529b791a7aa90f8178ea59ea --- diff --git a/base/mysql.hh b/base/mysql.hh index 89bec73d0..23edb878c 100644 --- a/base/mysql.hh +++ b/base/mysql.hh @@ -180,6 +180,7 @@ class Connection bool query(const std::string &sql) { + DPRINTF(SQL, "Sending SQL query to server:\n%s", sql); error.clear(); if (mysql_real_query(&mysql, sql.c_str(), sql.size())) error.set(mysql_error(&mysql)); diff --git a/base/traceflags.py b/base/traceflags.py index e073f96c1..4be61d7ee 100644 --- a/base/traceflags.py +++ b/base/traceflags.py @@ -121,7 +121,8 @@ baseFlags = [ 'IdeDisk', 'Tsunami', 'Uart', - 'Split' + 'Split', + 'SQL' ] #