Skip to content
New issue

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

Fix polluted stdout by using console.warn #36

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions compress.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ function adapter() {
} catch (err) {}

try {
console.log('warning: couldn\'t find native brotli support in zlib library. trying to fall back to iltorb.');
console.warn('warning: couldn\'t find native brotli support in zlib library. trying to fall back to iltorb.');
var iltorb = require('iltorb');
return iltorb.compress;
} catch (err) {
console.log('warning: couldn\'t load iltorb library. trying to fall back to brotli.js.');
console.log(err);
console.warn('warning: couldn\'t load iltorb library. trying to fall back to brotli.js.');
console.warn(err);

try {
var brotli = require('brotli');
Expand Down