Skip to content

Commit aefa0f9

Browse files
testing
1 parent d039559 commit aefa0f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/module-postgres-storage/src/storage/PostgresReportStorageFactory.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,9 @@ export class PostgresReportStorageFactory implements storage.ReportStorageFactor
298298
}
299299
async listCurrentConnections(data: ListCurrentConnectionsRequest): Promise<ListCurrentConnections> {
300300
const rows = await this.listConnectionsDateRangeQuery(data);
301+
console.log({ rows });
301302
// @ts-ignore
302-
console.log(rows.sdks.data);
303+
console.log(JSON.stringify(rows.sdks, null, 2));
303304
return {
304305
// @ts-ignore
305306
users: Number(rows.users),

0 commit comments

Comments
 (0)