MCPcopy Create free account
hub / github.com/NASAWorldWind/WorldWindJava / logger

Method logger

src/gov/nasa/worldwind/util/Logging.java:61–74  ·  view source on GitHub ↗

Returns the WorldWind logger. @return The logger.

()

Source from the content-addressed store, hash-verified

59 * @return The logger.
60 */
61 public static Logger logger()
62 {
63 try
64 {
65 // The Configuration singleton may not be established yet, so catch the exception that occurs if it's not
66 // and use the default logger name.
67 String loggerName = Configuration.getStringValue(AVKey.LOGGER_NAME, Configuration.DEFAULT_LOGGER_NAME);
68 return logger(loggerName);
69 }
70 catch (Exception e)
71 {
72 return logger(Configuration.DEFAULT_LOGGER_NAME);
73 }
74 }
75
76 /**
77 * Returns a specific logger. Does not access {@link gov.nasa.worldwind.Configuration} to determine the configured

Callers 15

isDataRasterMethod · 0.95
isWWDotNetLayerSetMethod · 0.95
ImportedDataPanelMethod · 0.95
addImportedDataMethod · 0.95
addLayerToWorldWindowMethod · 0.95
getLabelMethod · 0.95
WWOMeasureToolMethod · 0.95
setUnitsFormatMethod · 0.95
setMeasureShapeMethod · 0.95

Calls 2

getStringValueMethod · 0.95
getLoggerMethod · 0.80

Tested by

no test coverage detected