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

test: do not merge #1876

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/js-dapi-client/lib/logger/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const winston = require('winston');

// TODO: Refactor to use params instead on envs

const LOG_LEVEL = process.env.LOG_LEVEL || 'silent';
const LOG_LEVEL = 'silly'; // process.env.LOG_LEVEL || 'silent';
const LOG_TO_FILE = process.env.LOG_WALLET_TO_FILE || 'false';

// Log levels:
Expand Down
2 changes: 1 addition & 1 deletion packages/js-dash-sdk/src/logger/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type ConfigurableLogger = Logger & {
const util = require('util');
const winston = require('winston');

const LOG_LEVEL = process.env.LOG_LEVEL || 'info';
const LOG_LEVEL = 'silly'; // process.env.LOG_LEVEL || 'info';

// Log levels:
// error 0
Expand Down
1 change: 1 addition & 0 deletions packages/platform-test-suite/lib/test/karma/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const dirtyChai = require('dirty-chai');
const chaiAsPromised = require('chai-as-promised');
const sinon = require('sinon');
const sinonChai = require('sinon-chai');
require('setimmediate');

use(chaiAsPromised);
use(dirtyChai);
Expand Down
1 change: 1 addition & 0 deletions packages/platform-test-suite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"semver": "^7.5.3",
"setimmediate": "^1.0.5",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"stream-browserify": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-lib/src/logger/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const util = require('util');
const winston = require('winston');

const LOG_LEVEL = process.env.LOG_LEVEL || 'info';
const LOG_LEVEL = 'silly'; // process.env.LOG_LEVEL || 'info';
const LOG_TO_FILE = process.env.LOG_WALLET_TO_FILE || 'false';

// Log levels:
Expand Down
1 change: 1 addition & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1820,6 +1820,7 @@ __metadata:
path-browserify: "npm:^1.0.1"
process: "npm:^0.11.10"
semver: "npm:^7.5.3"
setimmediate: "npm:^1.0.5"
sinon: "npm:^17.0.1"
sinon-chai: "npm:^3.7.0"
stream-browserify: "npm:^3.0.0"
Expand Down
Loading