summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLukas Zeller <luz@synthesis.ch>2009-09-25 10:36:42 +0200
committerLukas Zeller <luz@synthesis.ch>2009-10-03 12:31:55 +0200
commit907a96b2a868c978a76b15e1b563eaf42e44241a (patch)
treef23d0e8cb84e939dd15a557f67bbc3d646e25ce7 /src
parentebe2893ce580097e3715558ee8ddfd6d69eaaddc (diff)
Debug output cosmetics (array map name is always "array", so do not show it)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/DB_interfaces/odbc_db/odbcapids.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DB_interfaces/odbc_db/odbcapids.cpp b/src/DB_interfaces/odbc_db/odbcapids.cpp
index 288f27d..85f94e5 100755
--- a/src/DB_interfaces/odbc_db/odbcapids.cpp
+++ b/src/DB_interfaces/odbc_db/odbcapids.cpp
@@ -1226,7 +1226,7 @@ void TODBCApiDS::writeArray(bool aDelete, bool aInsert, SQLHSTMT aStatement, TMu
TODBCFieldMapArrayItem *fmaiP = dynamic_cast<TODBCFieldMapArrayItem *>(aMapItemP);
PDEBUGPRINTFX(DBG_DATA+DBG_DBAPI+DBG_EXOTIC,("Writing Array, fmaiP=0x%lX",(long)fmaiP));
if (!fmaiP) return; // do nothing
- PDEBUGPRINTFX(DBG_DATA+DBG_DBAPI+DBG_EXOTIC,("Writing Array for field '%s'",fmaiP->getName()));
+ PDEBUGPRINTFX(DBG_DATA+DBG_DBAPI+DBG_EXOTIC,("Writing Array"));
// Check initscript first. If it returns false, we do not insert anything
bool doit;
#ifdef SCRIPT_SUPPORT