| /expo/packages/@expo/cli/src/utils/ |
| H A D | git.ts | 7 import * as Log from '../log'; 11 Log.warn( 21 Log.warn( 27 Log.log(); 36 Log.log(); 52 Log.log(`Your git working tree is ${chalk.green('clean')}`); 54 Log.log(' git clean --force && git reset --hard'); 57 Log.log(`${chalk.bold('Warning!')} Your git working tree is ${chalk.red('dirty')}.`); 58 Log.log( 64 Log.log("We couldn't find a git repository in your project directory."); [all …]
|
| H A D | modifyConfigAsync.ts | 5 import * as Log from '../log'; 17 Log.log(); 24 Log.log( 32 Log.log(); 35 Log.log(chalk.yellow(message)); 45 Log.log(chalk.cyan(`Please add the following to your Expo config`)); 46 Log.log(); 47 Log.log(JSON.stringify(edits, null, 2)); 48 Log.log();
|
| H A D | profile.ts | 4 import * as Log from '../log'; 25 Log.time(name); 32 Log.timeEnd(name); 41 Log.timeEnd(name); 45 Log.timeEnd(name);
|
| /expo/packages/create-expo/src/ |
| H A D | resolveProjectRoot.ts | 7 import { Log } from './log'; 18 Log.exit( 29 Log.log(); 31 Log.log(` ${file}`); 33 Log.log(); 63 Log.log(); 64 Log.log('Please choose your app name:'); 66 Log.log(); 67 Log.log(`For more info, run:`); 69 Log.log(); [all …]
|
| /expo/packages/expo-modules-core/android/src/main/java/expo/modules/core/logging/ |
| H A D | OSLogHandler.kt | 3 import android.util.Log 22 Log.DEBUG -> Log.d(category, message, cause) in log() 23 Log.INFO -> Log.i(category, message, cause) in log() 24 Log.WARN -> Log.w(category, message, cause) in log() 25 Log.ERROR -> Log.e(category, message, cause) in log() 26 Log.ASSERT -> Log.e(category, message, cause) in log()
|
| H A D | LogType.kt | 3 import android.util.Log 22 Trace -> Log.DEBUG in toOSLogType() 23 Timer -> Log.DEBUG in toOSLogType() 24 Stacktrace -> Log.DEBUG in toOSLogType() 25 Debug -> Log.DEBUG in toOSLogType() 26 Info -> Log.INFO in toOSLogType() 27 Warn -> Log.WARN in toOSLogType() 28 Error -> Log.ERROR in toOSLogType() 29 Fatal -> Log.ASSERT in toOSLogType()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/core/logging/ |
| H A D | OSLogHandler.kt | 3 import android.util.Log 22 Log.DEBUG -> Log.d(category, message, cause) in log() 23 Log.INFO -> Log.i(category, message, cause) in log() 24 Log.WARN -> Log.w(category, message, cause) in log() 25 Log.ERROR -> Log.e(category, message, cause) in log() 26 Log.ASSERT -> Log.e(category, message, cause) in log()
|
| H A D | LogType.kt | 3 import android.util.Log 22 Trace -> Log.DEBUG in toOSLogType() 23 Timer -> Log.DEBUG in toOSLogType() 24 Stacktrace -> Log.DEBUG in toOSLogType() 25 Debug -> Log.DEBUG in toOSLogType() 26 Info -> Log.INFO in toOSLogType() 27 Warn -> Log.WARN in toOSLogType() 28 Error -> Log.ERROR in toOSLogType() 29 Fatal -> Log.ASSERT in toOSLogType()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/core/logging/ |
| H A D | OSLogHandler.kt | 3 import android.util.Log 22 Log.DEBUG -> Log.d(category, message, cause) in log() 23 Log.INFO -> Log.i(category, message, cause) in log() 24 Log.WARN -> Log.w(category, message, cause) in log() 25 Log.ERROR -> Log.e(category, message, cause) in log() 26 Log.ASSERT -> Log.e(category, message, cause) in log()
|
| H A D | LogType.kt | 3 import android.util.Log 22 Trace -> Log.DEBUG in toOSLogType() 23 Timer -> Log.DEBUG in toOSLogType() 24 Stacktrace -> Log.DEBUG in toOSLogType() 25 Debug -> Log.DEBUG in toOSLogType() 26 Info -> Log.INFO in toOSLogType() 27 Warn -> Log.WARN in toOSLogType() 28 Error -> Log.ERROR in toOSLogType() 29 Fatal -> Log.ASSERT in toOSLogType()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/core/logging/ |
| H A D | OSLogHandler.kt | 3 import android.util.Log 22 Log.DEBUG -> Log.d(category, message, cause) in log() 23 Log.INFO -> Log.i(category, message, cause) in log() 24 Log.WARN -> Log.w(category, message, cause) in log() 25 Log.ERROR -> Log.e(category, message, cause) in log() 26 Log.ASSERT -> Log.e(category, message, cause) in log()
|
| H A D | LogType.kt | 3 import android.util.Log 22 Trace -> Log.DEBUG in toOSLogType() 23 Timer -> Log.DEBUG in toOSLogType() 24 Stacktrace -> Log.DEBUG in toOSLogType() 25 Debug -> Log.DEBUG in toOSLogType() 26 Info -> Log.INFO in toOSLogType() 27 Warn -> Log.WARN in toOSLogType() 28 Error -> Log.ERROR in toOSLogType() 29 Fatal -> Log.ASSERT in toOSLogType()
|
| /expo/packages/@expo/cli/src/start/interface/ |
| H A D | interactiveActions.ts | 5 import * as Log from '../../log'; 39 Log.log( 48 Log.log( 52 Log.log( 75 Log.log(); 81 Log.log(); 85 Log.log('Opening JavaScript inspector in the browser...'); 90 Log.warn( 103 Log.exception(error); 108 Log.log(`${BLT} Reloading apps`); [all …]
|
| H A D | startInterface.ts | 6 import * as Log from '../../log'; 89 return Log.clear(); 112 Log.clear(); 121 Log.warn( 130 Log.exception(error); 140 Log.clear(); 155 Log.warn(e.message); 174 Log.log(`${BLT} Open in the web browser...`); 180 Log.exception(error); 186 Log.clear(); [all …]
|
| /expo/packages/expo-updates/cli/utils/ |
| H A D | modifyConfigAsync.ts | 4 import * as Log from './log'; 16 Log.log(); 23 Log.log( 31 Log.log(); 34 Log.log(chalk.yellow(message)); 44 Log.log(chalk.cyan(`Please add the following to your Expo config`)); 45 Log.log(); 46 Log.log(JSON.stringify(edits, null, 2)); 47 Log.log();
|
| /expo/packages/@expo/cli/src/start/doctor/typescript/ |
| H A D | updateTSConfig.ts | 5 import * as Log from '../../../log'; 48 Log.log(); 51 Log.log(chalk`{bold TypeScript}: A {cyan tsconfig.json} has been auto-generated`); 53 Log.log( 58 Log.log(); 62 Log.log(); 64 Log.log(chalk`\u203A {bold Required} modifications made to the {cyan tsconfig.json}:`); 66 Log.log(); 71 Log.log(); 78 Log.log(tableFormat(key, value));
|
| /expo/packages/@expo/cli/src/start/doctor/dependencies/__tests__/ |
| H A D | validateDependenciesVersions-test.ts | 6 import * as Log from '../../../../log'; 30 asMock(Log.warn).mockImplementation(console.log); 41 expect(Log.warn).toHaveBeenNthCalledWith( 45 expect(Log.warn).toHaveBeenNthCalledWith(2, expect.stringContaining('expected version')); 83 asMock(Log.warn).mockReset(); 105 expect(Log.warn).toHaveBeenNthCalledWith( 110 expect(Log.warn).toHaveBeenNthCalledWith(3, expect.stringContaining('expo-updates')); 114 asMock(Log.warn).mockReset(); 137 expect(Log.warn).toHaveBeenNthCalledWith( 141 expect(Log.warn).toHaveBeenCalledWith(expect.stringContaining('expo-updates')); [all …]
|
| /expo/packages/expo-branch/android/src/main/java/io/branch/rnbranch/ |
| H A D | RNBranchConfig.java | 8 import android.util.Log; 41 Log.e(TAG, "Error loading branch.json: " + e.getMessage()); in RNBranchConfig() 44 Log.e(TAG, "Error parsing branch.json: " + e.getMessage()); in RNBranchConfig() 57 Log.e(TAG, "Error parsing branch.json: " + exception.getMessage()); in get() 70 Log.e(TAG, "Error parsing branch.json: " + exception.getMessage()); in getDebugMode() 84 Log.e(TAG, "Error parsing branch.json: " + exception.getMessage()); in getBranchKey() 98 Log.e(TAG, "Error parsing branch.json: " + exception.getMessage()); in getLiveKey() 112 Log.e(TAG, "Error parsing branch.json: " + exception.getMessage()); in getTestKey() 125 Log.e(TAG, "Error parsing branch.json: " + exception.getMessage()); in getUseTestInstance() 138 Log.e(TAG, "Error parsing branch.json: " + exception.getMessage()); in getEnableFacebookLinkCheck()
|
| /expo/android/expoview/src/main/java/host/exp/exponent/analytics/ |
| H A D | EXL.kt | 4 import android.util.Log 20 Log.d(tag, msg) in d() 24 Log.w(tag, msg) in w() 29 Log.e(tag, e.toString()) in e() 33 Log.e(tag, msg ?: "") in e()
|
| /expo/packages/@expo/cli/src/utils/__tests__/ |
| H A D | tar-test.ts | 4 import * as Log from '../../log'; 23 asMock(Log.warn).mockClear(); 40 expect(Log.warn).toBeCalledTimes(1); 41 expect(Log.warn).toHaveBeenLastCalledWith( 56 expect(Log.warn).toBeCalledTimes(0); 67 expect(Log.warn).toBeCalledTimes(0);
|
| /expo/packages/@expo/cli/src/start/platforms/__tests__/ |
| H A D | PlatformManager-test.ts | 1 import * as Log from '../../../log'; 103 expect(Log.warn).toHaveBeenCalledTimes(0); 104 expect(Log.error).toHaveBeenCalledTimes(0); 133 expect(Log.warn).toHaveBeenCalledTimes(0); 134 expect(Log.error).toHaveBeenCalledTimes(0); 164 expect(Log.warn).toHaveBeenCalledTimes(1); 166 expect(Log.error).toHaveBeenCalledTimes(0); 192 expect(Log.warn).toHaveBeenCalledTimes(1); 216 expect(Log.warn).toHaveBeenCalledTimes(0); 246 expect(Log.warn).toHaveBeenCalledTimes(0); [all …]
|
| /expo/packages/@expo/cli/src/export/ |
| H A D | printBundleSizes.ts | 7 import * as Log from '../log'; 30 Log.log(); 31 Log.log(createFilesTable(files.sort((a, b) => a[1].length - b[1].length))); 32 Log.log(); 33 Log.log( 38 Log.log();
|
| /expo/tools/src/ |
| H A D | EASUpdate.ts | 5 import * as Log from './Log'; 27 Log.collapsed('Using access token...'); 34 Log.collapsed('Logging in...'); 37 Log.collapsed('Expo username and password not specified. Using currently logged-in account.'); 51 Log.collapsed('Publishing...');
|
| /expo/packages/@expo/cli/src/start/server/webpack/ |
| H A D | compile.ts | 6 import * as Log from '../../../log'; 24 Log.warn(chalk.yellow('Compiled with warnings\n')); 25 Log.warn(warnings.join('\n\n')); 27 Log.log(chalk.green('Compiled successfully'));
|
| /expo/packages/expo-updates/android/src/main/java/expo/modules/updates/db/ |
| H A D | Reaper.kt | 3 import android.util.Log 28 Log.d(TAG, "Tried to reap while no update was launched; aborting") in reapUnusedUpdates() 44 Log.e( in reapUnusedUpdates() 53 Log.e(TAG, "Failed to delete asset with URL " + asset.url + " at path " + path.toString()) in reapUnusedUpdates() 57 Log.e( in reapUnusedUpdates() 73 Log.e( in reapUnusedUpdates() 79 Log.e( in reapUnusedUpdates()
|