Skip to content

zymego/postgraphile-log-winston

This branch is up to date with graphile/postgraphile-log-consola:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 23, 2019
a17873a Β· Feb 23, 2019

History

3 Commits
Feb 23, 2019
Feb 23, 2019
Feb 23, 2019
Feb 23, 2019
Feb 23, 2019

Repository files navigation

postgraphile-log-consola

This PostGraphile server plugin disables PostGraphile's query log and instead uses consola for logging.

Installation

yarn add postgraphile-log-consola

Usage - library

Use makePluginHook to load the plugin; see the PostGraphile server plugins docs for more details.

const { postgraphile, makePluginHook } = require("postgraphile");
const PostgraphileLogConsola = require("postgraphile-log-consola");

// Other server frameworks work similarly
const express = require("express");
const app = express();

const pluginHook = makePluginHook([PostgraphileLogConsola]); // πŸ‘ˆ
app.use(
  postgraphile(process.env.DATABASE_URL, "public", {
    pluginHook, // πŸ‘ˆ
    // ...
  })
);

app.listen(process.env.PORT || 3000);

Usage - CLI

NOTE: --plugins must always be the very first option you use on the CLI.

Also note that this plugin only affects the query log, so the other messages the CLI generates are not wrapped.

postgraphile --plugins postgraphile-log-consola -c my_db

About

Use consola for PostGraphile logging

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%