org.robolectric.util.Logger类的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(7.0k)|赞(0)|评价(0)|浏览(245)

本文整理了Java中org.robolectric.util.Logger类的一些代码示例,展示了Logger类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logger类的具体详情如下:
包路径:org.robolectric.util.Logger
类名称:Logger

Logger介绍

[英]Logger for Robolectric. For now, it simply prints messages to stdout. Logging can be enabled by setting the property: robolectric.logging.enabled = true.
[中]机器人分子记录器。现在,它只是将消息打印到stdout。可以通过设置属性:robolectric来启用日志记录。登录中。启用=真。

代码示例

代码示例来源:origin: robolectric/robolectric

  1. private void log(final String message) {
  2. org.robolectric.util.Logger.debug(message);
  3. }

代码示例来源:origin: robolectric/robolectric

  1. public CachedMavenDependencyResolver() {
  2. // cacheDir bumped to 'robolectric-2' to invalidate caching of bad URLs on windows prior
  3. // to fix for https://github.com/robolectric/robolectric/issues/3955
  4. File cacheDir = new File(new File(System.getProperty("java.io.tmpdir")), "robolectric-2");
  5. DependencyResolver dependencyResolver = new MavenDependencyResolver();
  6. if (cacheDir.exists() || cacheDir.mkdir()) {
  7. Logger.info("Dependency cache location: %s", cacheDir.getAbsolutePath());
  8. this.delegate = new CachedDependencyResolver(dependencyResolver, cacheDir,
  9. 60 * 60 * 24 * 1000);
  10. } else {
  11. this.delegate = dependencyResolver;
  12. }
  13. }

代码示例来源:origin: robolectric/robolectric

  1. private void strictError(String message, Object... args) {
  2. if (strictErrors) {
  3. throw new RuntimeException(String.format(message, args));
  4. } else {
  5. Logger.strict(message, args);
  6. }
  7. }

代码示例来源:origin: robolectric/robolectric

  1. public TypedResource pick(ResName resName, ResTable_config toMatch) {
  2. List<TypedResource> values = map.get(resName);
  3. if (values == null || values.size() == 0) return null;
  4. TypedResource bestMatchSoFar = null;
  5. for (TypedResource candidate : values) {
  6. ResTable_config candidateConfig = candidate.getConfig();
  7. if (candidateConfig.match(toMatch)) {
  8. if (bestMatchSoFar == null || candidateConfig.isBetterThan(bestMatchSoFar.getConfig(), toMatch)) {
  9. bestMatchSoFar = candidate;
  10. }
  11. }
  12. }
  13. if (Logger.loggingEnabled()) {
  14. Logger.debug("Picked '%s' for %s for qualifiers '%s' (%d candidates)",
  15. bestMatchSoFar == null ? "<none>" : bestMatchSoFar.getXmlContext().getQualifiers().toString(),
  16. resName.getFullyQualifiedName(),
  17. toMatch,
  18. values.size());
  19. }
  20. return bestMatchSoFar;
  21. }

代码示例来源:origin: robospock/RoboSpock

  1. Logger.error("Field 'constants' not specified in @Config annotation");
  2. Logger.error("This is required when using RobolectricGradleTestRunner!");
  3. throw new RuntimeException("No 'constants' field in @Config annotation!");
  4. Logger.debug("Robolectric assets directory: " + assets.getPath());
  5. Logger.debug(" Robolectric res directory: " + res.getPath());
  6. Logger.debug(" Robolectric manifest path: " + manifest.getPath());
  7. Logger.debug(" Robolectric package name: " + packageName);
  8. return new AndroidManifest(manifest, res, assets, packageName);

代码示例来源:origin: robolectric/robolectric

  1. private static Implementation getImplementationAnnotation(Method method) {
  2. if (method == null) {
  3. return null;
  4. }
  5. Implementation implementation = method.getAnnotation(Implementation.class);
  6. if (implementation == null) {
  7. Logger.warn("No @Implementation annotation on " + method);
  8. }
  9. return implementation == null
  10. ? IMPLEMENTATION_DEFAULTS
  11. : implementation;
  12. }

代码示例来源:origin: robolectric/robolectric

  1. /**
  2. * Log a warning message.
  3. *
  4. * @param message Message text.
  5. * @param args Message arguments.
  6. */
  7. public static void warn(String message, Object... args) {
  8. if (loggingEnabled()) {
  9. System.out.print("WARN: ");
  10. System.out.println(String.format(message, args));
  11. }
  12. }

代码示例来源:origin: ACRA/acra

  1. @Override
  2. public int e(String tag, String msg) {
  3. Logger.error(msg.replace("%","%%"));
  4. return 0;
  5. }

代码示例来源:origin: org.robolectric/resources

  1. public TypedResource pick(ResName resName, ResTable_config toMatch) {
  2. List<TypedResource> values = map.get(resName);
  3. if (values == null || values.size() == 0) return null;
  4. TypedResource bestMatchSoFar = null;
  5. for (TypedResource candidate : values) {
  6. ResTable_config candidateConfig = candidate.getConfig();
  7. if (candidateConfig.match(toMatch)) {
  8. if (bestMatchSoFar == null || candidateConfig.isBetterThan(bestMatchSoFar.getConfig(), toMatch)) {
  9. bestMatchSoFar = candidate;
  10. }
  11. }
  12. }
  13. if (Logger.loggingEnabled()) {
  14. Logger.debug("Picked '%s' for %s for qualifiers '%s' (%d candidates)",
  15. bestMatchSoFar == null ? "<none>" : bestMatchSoFar.getXmlContext().getQualifiers().toString(),
  16. resName.getFullyQualifiedName(),
  17. toMatch,
  18. values.size());
  19. }
  20. return bestMatchSoFar;
  21. }

代码示例来源:origin: algolia/algoliasearch-client-android

  1. @Override
  2. protected AndroidManifest getAppManifest(Config config) {
  3. final String cwd = System.getProperty("user.dir");
  4. Logger.debug("Current working directory: " + cwd);
  5. Logger.error("Field 'constants' not specified in @Config annotation");
  6. Logger.error("This is required when using RobolectricGradleTestRunner!");
  7. throw new RuntimeException("No 'constants' field in @Config annotation!");
  8. Logger.debug("Robolectric assets directory: " + assets.getPath());
  9. Logger.debug(" Robolectric res directory: " + res.getPath());
  10. Logger.debug(" Robolectric manifest path: " + manifest.getPath());
  11. Logger.debug(" Robolectric package name: " + packageName);
  12. return new AndroidManifest(manifest, res, assets, packageName);

代码示例来源:origin: ACRA/acra

  1. @Override
  2. public int w(String tag, Throwable tr) {
  3. Logger.warn("", tr);
  4. return 0;
  5. }

代码示例来源:origin: robolectric/robolectric

  1. /**
  2. * Log a debug message.
  3. *
  4. * @param message Message text.
  5. * @param args Message arguments.
  6. */
  7. public static void debug(String message, Object... args) {
  8. if (loggingEnabled()) {
  9. System.out.print("DEBUG: ");
  10. System.out.println(String.format(message, args));
  11. }
  12. }

代码示例来源:origin: ACRA/acra

  1. @Override
  2. public int e(String tag, String msg, Throwable tr) {
  3. Logger.error(msg.replace("%","%%"), tr);
  4. return 0;
  5. }

代码示例来源:origin: ACRA/acra

  1. @Override
  2. public int v(String tag, String msg, Throwable tr) {
  3. Logger.debug(msg.replace("%","%%"), tr);
  4. return 0;
  5. }

代码示例来源:origin: ACRA/acra

  1. @Override
  2. public int i(String tag, String msg, Throwable tr) {
  3. Logger.info(msg.replace("%","%%"), tr);
  4. return 0;
  5. }

代码示例来源:origin: robolectric/robolectric

  1. private static URL[] parseJavaClassPath() {
  2. ImmutableList.Builder<URL> urls = ImmutableList.builder();
  3. for (String entry : Splitter.on(PATH_SEPARATOR.value()).split(JAVA_CLASS_PATH.value())) {
  4. try {
  5. try {
  6. urls.add(new File(entry).toURI().toURL());
  7. } catch (SecurityException e) { // File.toURI checks to see if the file is a directory
  8. urls.add(new URL("file", null, new File(entry).getAbsolutePath()));
  9. }
  10. } catch (MalformedURLException e) {
  11. Logger.strict("malformed classpath entry: " + entry, e);
  12. }
  13. }
  14. return urls.build().toArray(new URL[0]);
  15. }

代码示例来源:origin: ACRA/acra

  1. @Override
  2. public int w(String tag, String msg) {
  3. Logger.warn(msg.replace("%","%%"));
  4. return 0;
  5. }

代码示例来源:origin: robolectric/robolectric

  1. /**
  2. * Log an info message.
  3. *
  4. * @param message Message text.
  5. * @param args Message arguments.
  6. */
  7. public static void info(String message, Object... args) {
  8. if (loggingEnabled()) {
  9. System.out.print("INFO: ");
  10. System.out.println(String.format(message, args));
  11. }
  12. }

代码示例来源:origin: ACRA/acra

  1. @Override
  2. public int d(String tag, String msg) {
  3. Logger.debug(msg.replace("%","%%"));
  4. return 0;
  5. }

代码示例来源:origin: ACRA/acra

  1. @Override
  2. public int i(String tag, String msg) {
  3. Logger.info(msg.replace("%","%%"));
  4. return 0;
  5. }

相关文章