Skip to content
Snippets Groups Projects
Commit 89538c36 authored by timothycarambat's avatar timothycarambat
Browse files

fix typo in agent debug logs

parent fbc9c868
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ module.exports.SqlAgentGetTableSchema = {
);
if (!databaseConfig) {
this.super.handlerProps.log(
`sql-get-table-schema to find config!.`,
`sql-get-table-schema to find config!`,
database_id
);
return `No database connection for ${database_id} was found!`;
......
......@@ -50,7 +50,7 @@ module.exports.SqlAgentListTables = {
);
if (!databaseConfig) {
this.super.handlerProps.log(
`sql-list-tables failed to find config!.`,
`sql-list-tables failed to find config!`,
database_id
);
return `No database connection for ${database_id} was found!`;
......
......@@ -66,7 +66,7 @@ module.exports.SqlAgentQuery = {
);
if (!databaseConfig) {
this.super.handlerProps.log(
`sql-query failed to find config!.`,
`sql-query failed to find config!`,
database_id
);
return `No database connection for ${database_id} was found!`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment