Skip to content

Commit

Permalink
chore: Replace fancy-log dependency with appium logger
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach committed Aug 2, 2024
1 parent c1164e7 commit 76dc98f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@
"asyncbox": "^3.0.0",
"bluebird": "^3.7.2",
"css-selector-parser": "^3.0.0",
"fancy-log": "^2.0.0",
"js2xmlparser2": "^0.x",
"lodash": "^4.17.21",
"lru-cache": "^10.0.0",
Expand Down
4 changes: 3 additions & 1 deletion scripts/build-wda.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ const xcode = require('appium-xcode');
const B = require('bluebird');
const {Simctl} = require('node-simctl');
const {getSimulator} = require('appium-ios-simulator');
const log = require('fancy-log');
const {logger} = require('appium/support');

const log = logger.getLogger('WDA');

// TODO: allow passing in all the various build params as CLI args
async function build() {
Expand Down
4 changes: 3 additions & 1 deletion scripts/open-wda.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
const path = require('path');
const {exec} = require('teen_process');
const log = require('fancy-log');
const {logger} = require('appium/support');

const log = logger.getLogger('WDA');
const {BOOTSTRAP_PATH} = require('appium-webdriveragent');
const XCODEPROJ_NAME = 'WebDriverAgent.xcodeproj';

Expand Down

0 comments on commit 76dc98f

Please sign in to comment.