Skip to content

Commit

Permalink
Drop yappy logs
Browse files Browse the repository at this point in the history
  • Loading branch information
HughParry committed Feb 12, 2025
1 parent cb14c9c commit a500f27
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/database/src/databases/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1511,10 +1511,6 @@ export class ProviderDatabase
* @description Get a client record
*/
async getClientRecord(account: string): Promise<ClientRecord | undefined> {
console.log("\n\n---\n\naccount", account);
console.log("\n\n---\n\n\this.tables", this.tables);
console.log("\n\n---\n\n db name", this.tables?.client);

const filter: Pick<ClientRecord, "account"> = { account };
const doc = await this.tables?.client.findOne(filter).lean<ClientRecord>();
return doc ? doc : undefined;
Expand Down

0 comments on commit a500f27

Please sign in to comment.