Home
last modified time | relevance | path

Searched refs:debug (Results 1 – 25 of 743) sorted by relevance

12345678910>>...30

/expo/packages/@expo/cli/src/utils/
H A Deditor.ts7 const debug = require('debug')('expo:utils:editor') as typeof console.log; constant
14 debug('Using $EXPO_EDITOR:', editor);
17 debug('Falling back on $EDITOR:', editor);
20 debug('Falling back on vscode');
29 debug(`Opening ${path} in ${editor?.name} (bin: ${editor?.binary}, id: ${editor?.id})`);
35 debug(`Failed to auto open path in editor (path: ${path}, binary: ${editor.binary}):`, error);
H A DvalidateApplicationId.ts11 const debug = require('debug')('expo:utils:validateApplicationId') as typeof console.log; constant
133 debug(
142 debug(`Checking iOS bundle ID '${bundleId}' at: ${url}`);
150 debug(`Error checking bundle ID ${bundleId}: ${error.message}`);
169 debug(
178 debug(`Checking Android package name '${packageName}' at: ${url}`);
190 debug(`Error checking package name ${packageName}: ${error.message}`);
/expo/packages/expo-yarn-workspaces/bin/
H A Dsymlink-necessary-packages.js4 const debug = require('debug')('workspaces'); constant
30 debug(`Project defined symlinks`, symlinks);
51 debug(`Checking if %s is installed at %s`, packageName, packagePath);
55 debug(`%s is already installed in the project; skipping symlinking package`, packageName);
64 debug(`Could not find Yarn workspace root; skipping symlinking package`);
75 debug(`%s does not exist; skipping symlinking package`, workspacePackagePath);
84 debug(`Ensuring %s exists`, scopePath);
86 debug(`Creating symlink from %s to %s`, path.join(scopePath, name), relativePackagePath);
91 debug(`Ensuring %s exists`, nodeModulesPath);
93 debug(
H A Dmake-entry-module.js4 const debug = require('debug')('workspaces'); constant
16 debug(`Checking the main module for the project at %s`, projectPath);
20 debug(`The project doesn't have a package.json file; will not make a main module`);
25 debug(`Using %s as the main module of the project`, mainModule);
39 debug(`The main module at %s already exists; will not make a main module`, mainModule);
52 debug(`Ensuring that the directory for the main module exists: %s`, mainModuleDirectory);
61 debug(`Generating main module code from template`);
75 debug(`Wrote generated main module to %s`, mainModulePath);
/expo/packages/@expo/cli/src/run/ios/appleDevice/client/
H A DAFCClient.ts25 const debug = Debug('expo:apple-device:client:afc'); constant
34 debug(`getFileInfo: ${path}`);
40 debug(`getFileInfo:response: %O`, response);
65 debug(`writeFile:response:`, response);
70 debug(`openFile: ${path}`);
104 debug(`closeFile:response:`, response);
109 debug(`uploadFile: ${srcPath}, ${destPath}`);
127 debug(`makeDirectory: ${path}`);
134 debug(`makeDirectory:response:`, response);
139 debug(`uploadDirectory: ${srcPath}`);
[all …]
H A DUsbmuxdClient.ts17 const debug = Debug('expo:apple-device:client:usbmuxd'); constant
114 debug('connectUsbmuxdSocket');
123 debug(`connect: ${device.DeviceID} on port ${port}`);
124 debug(`connect:device: %O`, device);
133 debug(`connect:device:response: %O`, response);
146 debug('getDevices');
160 debug(`getDevice ${udid ? 'udid: ' + udid : ''}`);
181 debug(`readPairRecord: ${udid}`);
192 debug('Binary plist pair record detected.');
H A DLockdowndClient.ts16 const debug = Debug('expo:apple-device:client:lockdownd'); constant
104 debug(`startService: ${name}`);
119 debug(`startSession: ${pairRecord}`);
140 debug(`Socket upgraded to TLS connection`);
149 debug(`getAllValues`);
161 debug(`getValue: ${val}`);
176 debug('queryType');
190 debug('doHandshake');
H A DDebugserverClient.ts15 const debug = Debug('expo:apple-device:client:debugserver'); constant
45 debug('Sending ^C to debugserver');
50 debug(`kill`);
53 debug(`kill:response: ${resp}`);
77 debug(`Sending command: ${cmd}, args: ${args}`);
/expo/packages/create-expo/src/utils/
H A Dgit.ts4 const debug = require('debug')('expo:init:git') as typeof console.log; constant
10 debug(chalk.dim('New project is already inside of a Git repo, skipping git init.'));
14 debug(chalk.dim('Unable to initialize Git repo. `git` not in $PATH.'));
32 debug(chalk.dim('Initialized a Git repository.'));
35 debug('Error initializing Git repo:', error);
/expo/packages/@expo/env/src/
H A Denv.ts19 const debug = require('debug')('expo:env') as typeof console.log; constant
36 debug(`Skipping .env files because EXPO_NO_DOTENV is defined`);
63 debug: IS_DEBUG,
71 debug(`Loaded environment variables from: ${absoluteDotenvFile}`);
84 debug(`Failed to load environment variables from: ${absoluteDotenvFile}`);
98 debug(`No environment variables loaded from .env files.`);
110 debug(`Skipping .env files because EXPO_NO_DOTENV is defined`);
123 debug(`Skipping .env files because EXPO_NO_DOTENV is defined`);
155 debug(`Skipping .env files because EXPO_NO_DOTENV is defined`);
161 debug('NODE_ENV is not defined, proceeding without mode-specific .env');
/expo/tools/src/vendoring/devmenu/steps/
H A DPrefixHeaders.ts12 debug?: boolean;
20 protected readonly debug: boolean;
22 constructor({ source, subPath, prefix, filePattern, debug }: PrefixHeadersSettings) {
28 this.debug = debug || false;
41 if (this.debug) {
55 if (this.debug) {
H A DTransformFilesContent.ts13 debug?: boolean;
26 protected readonly debug: boolean;
28 constructor({ source, filePattern, find, replace, debug }: FileContentTransformStepSettings) {
34 this.debug = debug || false;
51 if (this.debug) {
/expo/packages/@expo/cli/src/start/platforms/android/
H A DADBServer.ts9 const debug = require('debug')('expo:start:platforms:android:adbServer') as typeof console.log; constant
32 Log.debug('Failed to resolve the Android SDK path, falling back to global adb executable');
57 debug('Stopping ADB server');
60 debug('ADB server is not running');
71 debug('Stopped ADB server');
83 debug([adb, ...args].join(' '));
101 debug('[ADB] File output:\n', results);
H A DactivateWindow.ts6 const debug = require('debug')('expo:start:platforms:android:activateWindow') as typeof console.log; constant
11 debug('lsof ' + args.join(' '));
22 debug(`Activating window for device (pid: ${device.pid}, type: ${device.type})`);
43 debug(`Activate window for pid:`, pid);
/expo/packages/expo-modules-core/ios/Swift/Logging/
H A DLogType.swift12 case debug = 3
31 case .debug:
50 case .trace, .timer, .stacktrace, .debug: in toOSLogType()
51 return .debug in toOSLogType()
/expo/ios/versioned/sdk47/ExpoModulesCore/ios/Swift/Logging/
H A DLogType.swift12 case debug = 3
31 case .debug:
50 case .trace, .timer, .stacktrace, .debug: in toOSLogType()
51 return .debug in toOSLogType()
/expo/ios/versioned/sdk49/ExpoModulesCore/ios/Swift/Logging/
H A DLogType.swift12 case debug = 3
31 case .debug:
50 case .trace, .timer, .stacktrace, .debug: in toOSLogType()
51 return .debug in toOSLogType()
/expo/ios/versioned/sdk48/ExpoModulesCore/ios/Swift/Logging/
H A DLogType.swift12 case debug = 3
31 case .debug:
50 case .trace, .timer, .stacktrace, .debug: in toOSLogType()
51 return .debug in toOSLogType()
/expo/packages/@expo/cli/src/install/utils/
H A DautoAddConfigPlugins.ts10 const debug = require('debug')('expo:install:config-plugins') as typeof console.log; constant
71 debug('Checking config plugins...');
76 debug(`Existing plugins: ${normalized.join(', ')}`);
86 debug(`Package "${pkg}" has plugin: ${!!plugin}` + (plugin ? ` (args: ${plugin.length})` : ''));
89 debug(`Package "${pkg}" is an auto plugin, skipping...`);
/expo/packages/@expo/cli/src/start/server/middleware/
H A DFaviconMiddleware.ts5 const debug = require('debug')('expo:start:server:middleware:favicon') as typeof console.log; constant
31 debug('No favicon defined in the Expo Config, skipping generation.');
35 debug('✅ Generated favicon successfully.');
37 debug('Failed to generate favicon from Expo config:', error);
/expo/packages/@expo/cli/src/run/android/
H A DresolveInstallApkName.ts7 const debug = require('debug')('expo:run:android:resolveInstallApkName') as typeof console.log; constant
16 debug('Supported ABIs: ' + availableCPUs.join(', '));
17 debug('Searching for APK: ' + apkVariantDirectory);
23 debug('Checking for APK at:', apkPath);
32 debug('Checking for fallback APK at:', apkPath);
/expo/packages/@expo/cli/src/start/platforms/ios/
H A DAppleAppIdResolver.ts7 const debug = require('debug')('expo:start:platforms:ios:AppleAppIdResolver') as typeof console.log; constant
21 debug('Expected error checking for native project:', error);
34 debug('Expected error resolving the bundle identifier from the pbxproj:', error);
45 debug('Expected error resolving the bundle identifier from the project Info.plist:', error);
/expo/packages/@expo/fingerprint/src/sourcer/
H A DBare.ts10 const debug = require('debug')('expo:fingerprint:sourcer:Bare'); constant
19 debug(`Adding bare native dir - ${chalk.dim('android')}`);
33 debug(`Adding bare native dir - ${chalk.dim('ios')}`);
48 debug(`Unable to read package.json from ${path.resolve(projectRoot)}/package.json: ` + e);
53 debug(`Adding package.json contents - ${chalk.dim('scripts')}`);
68 debug(`Adding file - ${chalk.dim('.gitignore')}`);
88 debug(`Adding react-native-cli autolinking dir - ${chalk.dim(filePath)}`);
/expo/packages/@expo/cli/src/start/server/
H A DDevelopmentSession.ts11 const debug = require('debug')('expo:start:server:developmentSession') as typeof console.log; constant
50 debug(
60 debug(
68 debug(`Development session ping (runtime: ${runtime}, url: ${this.url})`);
82 debug(`Error updating development session API: ${error}`);
/expo/packages/@expo/cli/src/api/rest/
H A DwrapFetchWithProgress.ts3 const debug = require('debug')('expo:api:fetch:progress') as typeof console.log; constant
12 debug(`Download size: ${totalDownloadSize}`);
23 debug(`Starting progress animation for ${url}`);
30 debug(`Finished progress animation for ${url}`);

12345678910>>...30