@hasura/ndc-sdk-typescript
Version:
This SDK is mostly analogous to the Rust SDK, except where necessary.
12 lines • 379 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.configureFastifyLogging = configureFastifyLogging;
function configureFastifyLogging(options) {
return {
level: options.logLevel,
...(options.prettyPrintLogs
? { transport: { target: 'pino-pretty' } }
: {})
};
}
//# sourceMappingURL=logging.js.map