Giter VIP home page Giter VIP logo

Comments (4)

Caperious avatar Caperious commented on May 30, 2024 9

Thank you very much, got it to work.

For anyone else having the same issues here is a code example that worked for me:

import { AppModule } from '../src/app.module';
import { BootstrapConsole } from 'nestjs-console';
import { WINSTON_MODULE_NEST_PROVIDER } from 'nest-winston';
import { CrawlingSiteService } from '../src/database/service/crawling-site.service';

const bootstrap = new BootstrapConsole({
    module: AppModule,
    useDecorators: true,
    contextOptions: {
        logger: [
            'debug',
            'error',
            'log',
            'verbose',
            'warn'
        ]
    }
});
bootstrap.init().then(async (app) => {
    try {
        // init your app
        app.useLogger(app.get(WINSTON_MODULE_NEST_PROVIDER));

        await app.init();
        // boot the cli
        await bootstrap.boot();
        process.exit(0);
    } catch (e) {
        process.exit(1);
    }
});```

from nestjs-console.

ElMatella avatar ElMatella commented on May 30, 2024 1

Sorry, I just saw that I can do it with the contextOptions.

Thanks again for the great work you made ;)

from nestjs-console.

Caperious avatar Caperious commented on May 30, 2024

Can u shed some light on this issue? I'm still having a problem with logging. I can only log errors, all other functions to not log anything.

Here is an example of my application.

import { AppModule } from '../src/app.module';
import { BootstrapConsole } from 'nestjs-console';
import { LoggerService } from '@nestjs/common';

const bootstrap = new BootstrapConsole({
    module: AppModule,
    useDecorators: true
});
bootstrap.init().then(async (app) => {
    try {
        // init your app
        await app.init();
        const logger: LoggerService = app.get('Logger');
        logger.log('Is this working?')
        logger.error('Is this working?') // Only this is logged
        logger.verbose('Is this working?')
        logger.debug('Is this working?')
        logger.warn('Is this working?')
        // boot the cli
        await bootstrap.boot();
        process.exit(0);
    } catch (e) {
        process.exit(1);
    }
});

from nestjs-console.

Rmannn avatar Rmannn commented on May 30, 2024

You can set the logger level passing contextOptions to the bootstap constructor

from nestjs-console.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.