Fix logger name
This commit is contained in:
parent
2f54d41625
commit
4ebacf6753
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ import { getLogger } from "@logtape/logtape"
|
||||||
import Postgres from "@@npm/postgres"
|
import Postgres from "@@npm/postgres"
|
||||||
|
|
||||||
|
|
||||||
const l = getLogger(["dotino-veloce", "fedify", "kv"])
|
const l = getLogger(["dotino-veloce", "database", "kv"])
|
||||||
|
|
||||||
|
|
||||||
export function createPostgresKvStore(postgres: Postgres.Sql): PostgresKvStore {
|
export function createPostgresKvStore(postgres: Postgres.Sql): PostgresKvStore {
|
||||||
|
|
|
@ -2,7 +2,7 @@ import Postgres from "@@npm/postgres"
|
||||||
import { getLogger } from "@logtape/logtape"
|
import { getLogger } from "@logtape/logtape"
|
||||||
|
|
||||||
|
|
||||||
const l = getLogger(["dotino-veloce", "fedify", "postgres"])
|
const l = getLogger(["dotino-veloce", "database", "postgres"])
|
||||||
|
|
||||||
|
|
||||||
export function createPostgres(connString: string): Postgres.Sql {
|
export function createPostgres(connString: string): Postgres.Sql {
|
||||||
|
|
Loading…
Reference in a new issue