Commit 0b1e3ee3a41ed036aa8bcfd3bb15085490c19247
1 parent
5e720a3f
[~] remove some debug print
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
controller/hk_sql_utils.anubis
| ... | ... | @@ -78,7 +78,7 @@ public define Int |
| 78 | 78 | if sql_query_timeout(db, clause+";", [], "get_count_by_clause") is |
| 79 | 79 | { |
| 80 | 80 | error(sql_error) then println("get_count_by_full_clause SQL ERROR '"+ sql_error.text + "'\n clause ["+clause+";]");0, |
| 81 | - ok(_, cursor, _) then println("get_count_by_full_clause OK ["+clause+"]");db_get_Int(cursor) | |
| 81 | + ok(_, cursor, _) then /*println("get_count_by_full_clause OK ["+clause+";]");*/db_get_Int(cursor) | |
| 82 | 82 | } |
| 83 | 83 | . |
| 84 | 84 | |
| ... | ... | @@ -137,7 +137,7 @@ public define Float |
| 137 | 137 | if sql_query_timeout(db, clause+";", [], "get_count_by_clause") is |
| 138 | 138 | { |
| 139 | 139 | error(sql_error) then println("get_count_by_full_clause SQL ERROR '"+ sql_error.text + "'\n clause ["+clause+";]");0.0, |
| 140 | - ok(_, cursor, _) then println("get_count_by_full_clause OK ["+clause+"]");db_get_Float(cursor) | |
| 140 | + ok(_, cursor, _) then /*println("get_count_by_full_clause OK ["+clause+";]");*/db_get_Float(cursor) | |
| 141 | 141 | } |
| 142 | 142 | . |
| 143 | 143 | ... | ... |