A multi-transport async logging library for node.js.

learn more… | top users | synonyms

0
votes
0answers
12 views

winston file transport issue

I'm trying to use winston logger, but it seems to have a strange behavior when used with the file transport. Perhaps it's something I'm missing and I couldn't figure it out. I created a simple example ...
0
votes
0answers
21 views

How to log “catched” exceptions?

When winston handles uncaught exceptions it prints a nice info of the uncaught exception.How can I do the same on "catched exceptions"? if (err) { // winston. log the catched exception } I checked ...
0
votes
0answers
15 views

Nodejs with winston udplogger won't start

I have a nodejs / express app that uses winston with a udplogger. It works fine on a number of development environments, including Linux (Fedora, Centos), OSX and various versions of Windows. We have ...
0
votes
1answer
29 views

winston.js info method not passing metadata

When I'm passing metadata through winston the shortcut winston.info method isn't passing along the metadata. var winston = require('winston'); winston.info("winston with metadata", {cluster: ...
0
votes
1answer
14 views

How can I pass a filename to wiston logger constructor?

log.js: var winston = require('winston'); var logger = new (winston.Logger)({ transports: [ new (winston.transports.Console)({ json: false, timestamp: true }), new ...
1
vote
2answers
191 views

winston not logging at any log level. what could be wrong?

i have run in to a weird bug and dont know how to proceed/debug. i have an app thats written in nodejs and uses winston for logging. everything was working fine until i brought up a new production ...
2
votes
2answers
297 views

How to setup loglevel in winston/nodejs?

I am using winston logging with my nodejs app and have defined a file transport. Throughout my code, i log using either, logger.error, logger.warn or logger.info. My question is, how do i specify the ...
0
votes
1answer
45 views

Nodejs console overload scope issue

I am trying to override the console in Nodejs with Winston. for (var z in loggerSettings) { console[z] = (function () { var i = z + '' , _backup = console[z]; return ...
0
votes
2answers
250 views

NodeJS/Forever archive logs

I am using forever to run my node application. When I start forever I specify where to write the logs. I also specify to append to the log. Problem here is that my log is going to grow out of ...
0
votes
0answers
152 views

Custom log message for Exceptions with Winston and Node.js

Is there a way to create a custom logger with an exception handler that can log a custom message to console (something like "UncaughtException has occurred Check exceptions.log for more details") and ...
0
votes
2answers
273 views

nodejs winston - Logging with multiple arguments

I was trying to use winston for logging, but I am seeing that if I want to get the data with 2 arg, then I am getting the log, but if I want to get 3 arguments, then I am not getting the data, Ex: ...
0
votes
1answer
145 views

using winston in several modules

I have several modules - let's say server.js, module1.js,...,moduleN.js. I would like define the log file in my server.js: winston.add(winston.transports.File, { filename: 'mylogfile.log' }); and ...
1
vote
2answers
123 views

Logging as JSON - Standard is Multiple Root Elements, Why?

I'm looking to write a log file in JSON. After looking at a few libraries for formatting inspiration and best practices (Winston for Node.JS, Apache's JSON logging option, etc.), I've noticed that ...
0
votes
1answer
297 views

winston:how to change timestamp format

I am using winston to add log details in node.js, i used the following procedure to add the logs var winston = require('winston'); winston.remove(winston.transports.Console); ...
1
vote
0answers
148 views

Unable to Save Logs to mongodb Database for winston-nodejs

I am using the winston library: https://github.com/flatiron/winston Attempting to store data to the mongodb database with: https://github.com/indexzero/winston-mongodb to insert the data I use: var ...
1
vote
1answer
159 views

Node.js winston logger; How to start from a newline when insert log into log file?

I'm making a Node.js app and I am using Winston for most of my logging purposes. But I find all records in log file in one line, I want to change line for every log record, any way can do this? My ...
1
vote
2answers
117 views

I want to display the file Name in the log statement

For every logger statement with any level, I need to display the file name from where the log statement executed, below is the illustration I given below: Example : Below is the line executed from ...
0
votes
1answer
258 views

Why do I get 'Maximum call stack size exceeded' error when trying to create a custom logger (Winston/NodeJS)

I'm trying to understand how to use Winston (NodeJS) by creating a logger with custom levels. logger.js var winston = require('winston'); var custom = { levels: { debug: 0, log ...
0
votes
1answer
593 views

Logging with Winston in Express.js - how to configure for different environments?

I've started to use Winston for logging errors and events with my node/express.js app. One thing I have not figured out is how to specify different Winston transports (or other config) for different ...
2
votes
1answer
541 views

nodejs / winston logging — I want several log files, one with all requests, one with only POST's, another GET's (details inside)

The code below logs all requests to two files, one of which is JSON formatted. This has the side effect of logging each request to the console twice. Why is that? I am sure I'm using Winston ...
1
vote
0answers
84 views

How to log errors in mongoose, but unit testable?

I would like to log errors in my data access layer which uses mongoose. How do I make it easy to unit test? What is the best way to integrate mongoose(data access + middleware) with winston(logger). ...
1
vote
1answer
125 views

How to add scribe client for nodejs app with winston logs

I have been using winston for logging in my node application.Now I need to setup scribe for aggregating the application logs.I noticed the node-scribe client for node app to interact with scribe ...
0
votes
2answers
150 views

Winston logger names

Flatiron's logging library Winston is quite useful, but I can not figure how to assign names to loggers. I am expecting an output similar to other logging libraries, for instance: [<date>] ...
0
votes
1answer
130 views

What is the default location of Winston logs?

I am using something like this: var winston = require('winston'), logger = new (winston.Logger)({ transports: [ new (winston.transports.Console) (), new (winston.transports.File) ...
0
votes
0answers
407 views

How properly structure custom logger using Winston [closed]

I created a custom logger using Winston in CoffeeScript. It's suppose to log to the console and to a 'general.log' file: winston = require 'winston' logger = new (winston.Logger) ( transports: [ ...
0
votes
1answer
493 views

File rotation using winston works unexpected

I have created a Winston logger: _logger.add(logger.transports.File, { filename: conf_fileName, timestamp:'true', maxsize: 1024, maxFiles: 2 }); But after couple of hours I have lot ...
1
vote
0answers
223 views

Strange Winston issue with File transport open and closing

I've been having a strange issue with Winston and was looking for some guidance. I am trying to rotate logs by simply closing the file stream using myTransport.transports.file.opening = true; ...
5
votes
2answers
3k views

How can I add timestamp to logs using node.js library Winston?

I want to add timestamp to logs, what is the best way to achieve it?
1
vote
1answer
271 views

How to rotate Winston logs from separate script?

we are using node.js and winston to right out log files. we have a custom log rotation script written in PHP that we would like to use on those log files. but the script just moves the file which ...
0
votes
1answer
243 views

Mocha with Node: Only show logging for tests that fail

I'm using node with mocha and winston. Is there a way to set it up so it only shows logs for failing tests?
5
votes
1answer
837 views

Multiple log files with Winston?

We'd like to use Winston for our logging in Node.js. But, we can't figure out how to have two log files: one for just errors, and one for everything else. Doing this the naive way doesn't work, ...