Giter Site home page Giter Site logo

Comments (9)

terrytheplatypus avatar terrytheplatypus commented on June 1, 2024 19

Here is Java code of the above for lazy people, the imports are the same. :

    Set<String> loggers = new HashSet<>(Arrays.asList("org.apache.http", "groovyx.net.http"));
    
    for(String log:loggers) { 
    Logger logger = (Logger)LoggerFactory.getLogger(log);
    logger.setLevel(Level.INFO);
    logger.setAdditive(false);
    }

However, this does not work in gnome-terminal because of this error:
org.slf4j.impl.SimpleLogger cannot be cast to ch.qos.logback.classic.Logger

from artifactory-client-java.

milind94 avatar milind94 commented on June 1, 2024 10

Create a logback.xml with below contents:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <logger name="org.apache" level="ERROR" />
    <logger name="httpclient" level="ERROR" />
</configuration>

Then put this logback.xml in your java source dir so it will be included in jar file. Otherwise create a jar from logback.xml and put this jar to your lib where you fetch all your jars.

A simple way to create logback.jar from logback.xml is using ant.
Create build.xml with below code:

<?xml version='1.0'?>
<project name="test" default="compile" basedir=".">
<target name = "build-jar">
   <jar destfile = "op/logback.jar"
      basedir = "in">
      <manifest>
        <attribute name = "Main-Class" value = "com.tutorialspoint.util.FaxUtil"/>
      </manifest>
   </jar>
</target>
</project>

Create a directory structure like:
.
|-- build.xml
|-- in --> logback.xml
|-- op --> logback.jar //This will be generated after execution of ant command

Now compile using ant build-jar
You will have logback.jar. Put this jar with all other jars and it will remove org.apache.http.wire DEBUG log

Thanks.

from artifactory-client-java.

Dougnlizt avatar Dougnlizt commented on June 1, 2024 7

Piggy-backing off of @terrytheplatypus and the code there, in order to avoid conflicts with using Java's util logger (or other logger you may be using), you can instead explicitly include the package like this:

Set<String> artifactoryLoggers = new HashSet<>(Arrays.asList("org.apache.http", "groovyx.net.http"));
for(String log:artifactoryLoggers) {
    ch.qos.logback.classic.Logger artLogger = (ch.qos.logback.classic.Logger) org.slf4j.LoggerFactory.getLogger(log);
    artLogger.setLevel(ch.qos.logback.classic.Level.INFO);
    artLogger.setAdditive(false);
}

from artifactory-client-java.

lev112 avatar lev112 commented on June 1, 2024 6

you can configure logback with a config file like this on logback.xml

If you want to disable programmatically, you can use this sample code (it's in scala, but java will be very similar):

import org.slf4j.LoggerFactory
import ch.qos.logback.classic.Level
import ch.qos.logback.classic.Logger

val loggers = Seq(
"org.apache.http",
"groovyx.net.http"
)

loggers.foreach { name =>
  val logger = LoggerFactory.getLogger(name).asInstanceOf[Logger]
  logger.setLevel(Level.INFO)
  logger.setAdditive(false)
}

from artifactory-client-java.

rage-shadowman avatar rage-shadowman commented on June 1, 2024 3
Set<String> artifactoryLoggers = new HashSet<>(Arrays.asList("org.apache.http", "groovyx.net.http"));
for(String log:artifactoryLoggers) {
    ch.qos.logback.classic.Logger artLogger = (ch.qos.logback.classic.Logger) org.slf4j.LoggerFactory.getLogger(log);
    artLogger.setLevel(ch.qos.logback.classic.Level.INFO);
    artLogger.setAdditive(false);
}

@Dougnlizt Is there a logback config file setting to make this work?

Sadly, the following doesn't work for me even though the above programmatic setting does:

<logger name="org.apache.http" level="INFO" additive="false"/>
<logger name="groovyx.net.http" level="INFO" additive="false"/>

Even bumping my root log level up to INFO in the logback config file fails to stop these DEBUG logs.

from artifactory-client-java.

 avatar commented on June 1, 2024

it works for me . Thanks @terrytheplatypus

from artifactory-client-java.

MistRay avatar MistRay commented on June 1, 2024

Very helpful,thank you. @Dougnlizt

from artifactory-client-java.

ranahosur avatar ranahosur commented on June 1, 2024

Create a logback.xml with below contents:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <logger name="org.apache" level="ERROR" />
    <logger name="httpclient" level="ERROR" />
</configuration>

Then put this logback.xml in your java source dir so it will be included in jar file. Otherwise create a jar from logback.xml and put this jar to your lib where you fetch all your jars.

A simple way to create logback.jar from logback.xml is using ant.
Create build.xml with below code:

<?xml version='1.0'?>
<project name="test" default="compile" basedir=".">
<target name = "build-jar">
   <jar destfile = "op/logback.jar"
      basedir = "in">
      <manifest>
        <attribute name = "Main-Class" value = "com.tutorialspoint.util.FaxUtil"/>
      </manifest>
   </jar>
</target>
</project>

Create a directory structure like:
.
|-- build.xml
|-- in --> logback.xml
|-- op --> logback.jar //This will be generated after execution of ant command

Now compile using ant build-jar
You will have logback.jar. Put this jar with all other jars and it will remove org.apache.http.wire DEBUG log

Thanks.

Awesome. This saved me

from artifactory-client-java.

atul-epam avatar atul-epam commented on June 1, 2024

@milind94 It did not work for me. I created the logback.xml file with exactly same content and added in resource folder and created jar file but I still see those logs

from artifactory-client-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.