Skip to content

Commit

Permalink
Statements counting output fix
Browse files Browse the repository at this point in the history
  • Loading branch information
denizzzka committed Apr 8, 2016
1 parent 109a291 commit 6e08c29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/app.d
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ int main(string[] args)
foreach(n; failedStatementsNames)
prepArgs.methods.remove(n);

logInfo("Number of methods in the table "~prepArgs.tableName~": "~
logInfo("Number of statements in the table "~prepArgs.tableName~": "~
prepArgs.rpcTableLength.to!string~", failed to prepare: "~prepArgs.failedCount.to!string);
}
}
Expand All @@ -126,7 +126,7 @@ int main(string[] args)

{
prepArgs.failedCount = prepArgs.rpcTableLength - readMethodsResult.loaded;
logDebugV("Number of methods in the table "~prepArgs.tableName~": "~prepArgs.rpcTableLength.to!string~", failed to load into pgator: "~prepArgs.failedCount.to!string);
logDebugV("Number of statements in the table "~prepArgs.tableName~": "~prepArgs.rpcTableLength.to!string~", failed to load into pgator: "~prepArgs.failedCount.to!string);
}

// prepare statements for previously used connection
Expand Down

0 comments on commit 6e08c29

Please sign in to comment.