Skip to content

Commit

Permalink
chore: logging
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Selman <danscode@selman.org>
  • Loading branch information
dselman committed May 28, 2024
1 parent bd234fc commit a942d77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphmodel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ export class GraphModel {
async chatWithData(text: string) {
const cypher = await this.textToCypher(text);
if (cypher) {
// this.options.logger?.info(`Generated Cypher: ${cypher}`);
this.options.logger?.info(`Generated Cypher: ${cypher}`);
const context = await this.openSession();
const transaction = await context.session.beginTransaction();
try {
Expand Down

0 comments on commit a942d77

Please sign in to comment.