We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As: A user of this package, I would want: My server to have an option to log events
E.g. In below example we allow the server to log all the logs with info and error
info
error
var options = { key: fs.readFileSync(__dirname + '/keys/spdy-key.pem'), cert: fs.readFileSync(__dirname + '/keys/spdy-fullchain.pem'), debug: { request: ['error', 'info'] } } var server = spdy.createServer(options, function(req, res) { res.writeHead(200); res.end('hello world!'); });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As: A user of this package,
I would want: My server to have an option to log events
E.g. In below example we allow the server to log all the logs with
info
anderror
The text was updated successfully, but these errors were encountered: