- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 192 for Logging (0.07 sec)
-
fess-crawler-opensearch/src/test/resources/logging.properties
handlers = java.util.logging.ConsoleHandler
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 59 bytes - Viewed (0) -
compat/maven-embedder/src/site/apt/logging.apt
~~ under the License. ----- Maven Logging ----- Hervé Boutemy ----- 2013-08-02 ----- Maven Logging {{{/maven-logging.html}End-user logging documentation}} is available {{{/maven-logging.html}in Maven site}}. This documentation is focused on internal implementation details. * Logging API Maven uses
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/SystemStreamLog.java
*/ public void info(Throwable error) { print("info", error); } /** * @see org.apache.maven.plugin.logging.Log#warn(java.lang.CharSequence) */ public void warn(CharSequence content) { print("warn", content); } /** * @see org.apache.maven.plugin.logging.Log#warn(java.lang.CharSequence, java.lang.Throwable) */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0) -
scripts/label_approved.py
settings = Settings() if settings.debug: logging.basicConfig(level=logging.DEBUG) else: logging.basicConfig(level=logging.INFO) logging.debug(f"Using config: {settings.json()}") g = Github(settings.token.get_secret_value()) repo = g.get_repo(settings.github_repository) for pr in repo.get_pulls(state="open"): logging.info(f"Checking PR: #{pr.number}") pr_labels = list(pr.get_labels())
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 13:58:30 UTC 2024 - 2.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/resources/META-INF/maven/slf4j-configuration.properties
# key = Slf4j effective logger factory implementation # value = corresponding o.a.m.cli.logging.Slf4jConfiguration class org.slf4j.impl.SimpleLoggerFactory=org.apache.maven.cli.logging.impl.MavenSimpleConfiguration org.apache.maven.slf4j.MavenLoggerFactory=org.apache.maven.cli.logging.impl.MavenSimpleConfiguration org.apache.logging.slf4j.Log4jLoggerFactory=org.apache.maven.cli.logging.impl.Log4j2Configuration
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
import static org.codelibs.opensearch.runner.OpenSearchRunner.newConfigs; import java.io.File; import java.util.UUID; import java.util.logging.ConsoleHandler; import java.util.logging.Level; import java.util.logging.Logger; import java.util.logging.SimpleFormatter; import org.codelibs.fess.crawler.client.FesenClient; import org.codelibs.fess.crawler.entity.UrlQueue;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 7.7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/Mojo.java
/** * Inject a standard <code>Maven</code> logging mechanism to allow this <code>Mojo</code> to communicate events * and feedback to the user. * * @param log a new logger * * @deprecated Use SLF4J directly */ @Deprecated void setLog(Log log); /** * Furnish access to the standard Maven logging mechanism which is managed in this base class. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/impl/Log4j2Configuration.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.cli.logging.impl; import org.apache.maven.cli.logging.BaseSlf4jConfiguration; /** * Configuration for slf4j-log4j2. * * @since 3.1.0 */ public class Log4j2Configuration extends BaseSlf4jConfiguration { @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLoggerManager.java
* under the License. */ package org.apache.maven.cli.logging; import org.codehaus.plexus.logging.Logger; import org.codehaus.plexus.logging.LoggerManager; import org.slf4j.ILoggerFactory; import org.slf4j.LoggerFactory; /** * Use an SLF4J {@link org.slf4j.ILoggerFactory} as a backing for a Plexus * {@link org.codehaus.plexus.logging.LoggerManager},
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
cli.cli(request); cli.properties(request); cli.logging(request); assertFalse(MessageUtils.isColorEnabled()); MessageUtils.setColorEnabled(true); request = new CliRequest(new String[] {"--non-interactive"}, null); cli.cli(request); cli.properties(request); cli.logging(request); assertFalse(MessageUtils.isColorEnabled());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0)