[open-ils-commits] r18281 - trunk/Open-ILS/src/c-apps (miker)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Oct 12 12:02:34 EDT 2010
Author: miker
Date: 2010-10-12 12:02:31 -0400 (Tue, 12 Oct 2010)
New Revision: 18281
Modified:
trunk/Open-ILS/src/c-apps/oils_sql.c
Log:
now that we are working again, hush the warnings (osrfLogInternal to the rescue)
Modified: trunk/Open-ILS/src/c-apps/oils_sql.c
===================================================================
--- trunk/Open-ILS/src/c-apps/oils_sql.c 2010-10-12 15:40:45 UTC (rev 18280)
+++ trunk/Open-ILS/src/c-apps/oils_sql.c 2010-10-12 16:02:31 UTC (rev 18281)
@@ -4416,7 +4416,7 @@
ClassInfo* order_class_info = search_alias( class_itr->key );
if( ! order_class_info ) {
- osrfLogWarning( OSRF_LOG_MARK,
+ osrfLogInternal( OSRF_LOG_MARK,
"%s: Invalid class \"%s\" referenced in ORDER BY clause, skipping it",
modulename, class_itr->key );
continue;
@@ -4811,7 +4811,7 @@
const ClassInfo* order_class_info = search_alias( class_alias );
if( ! order_class_info ) {
- osrfLogWarning( OSRF_LOG_MARK, "%s: ORDER BY clause references class \"%s\" "
+ osrfLogInternal( OSRF_LOG_MARK, "%s: ORDER BY clause references class \"%s\" "
"not in FROM clause, skipping it", modulename, class_alias );
continue;
}
More information about the open-ils-commits
mailing list