How to ouput the log of Apache Mina SSHD?

Multi tool use
Multi tool use












0















I am building a demo base on Apache Mina SSHD, and i import log4j by maven and config log4j,the configuration of log4j like this:



# priority  :debug<info<warn<error


you cannot specify every priority with different file for log4j



log4j.rootLogger=debug,stdout,info,debug,warn,error



console



log4j.appender.stdout=org.apache.log4j.ConsoleAppender



log4j.appender.stdout.layout=org.apache.log4j.PatternLayout



log4j.appender.stdout.layout.ConversionPattern= [%d{yyyy-MM-dd HH:mm:ss a}]:%p %l%m%n



info log



log4j.logger.info=info



log4j.appender.info=org.apache.log4j.DailyRollingFileAppender



log4j.appender.info.DatePattern='_'yyyy-MM-dd'.log'



log4j.appender.info.File=./src/com/hp/log/info.log



log4j.appender.info.Append=true



log4j.appender.info.Threshold=INFO



log4j.appender.info.layout=org.apache.log4j.PatternLayout



log4j.appender.info.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss a} [Thread: %t][ Class:%c >> Method: %l ]%n%p:%m%n



debug log



log4j.logger.debug=debug



log4j.appender.debug=org.apache.log4j.DailyRollingFileAppender



log4j.appender.debug.DatePattern='_'yyyy-MM-dd'.log'



log4j.appender.debug.File=./src/com/hp/log/debug.log



log4j.appender.debug.Append=true



log4j.appender.debug.Threshold=DEBUG



log4j.appender.debug.layout=org.apache.log4j.PatternLayout



log4j.appender.debug.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss a} [Thread: %t][ Class:%c >> Method: %l ]%n%p:%m%n



warn log



log4j.logger.warn=warn



log4j.appender.warn=org.apache.log4j.DailyRollingFileAppender



log4j.appender.warn.DatePattern='_'yyyy-MM-dd'.log'



log4j.appender.warn.File=./src/com/hp/log/warn.log



log4j.appender.warn.Append=true



log4j.appender.warn.Threshold=WARN



log4j.appender.warn.layout=org.apache.log4j.PatternLayout



log4j.appender.warn.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss a} [Thread: %t][ Class:%c >> Method: %l ]%n%p:%m%n



error



log4j.logger.error=error



log4j.appender.error = org.apache.log4j.DailyRollingFileAppender



log4j.appender.error.DatePattern='_'yyyy-MM-dd'.log'



log4j.appender.error.File = ./src/com/hp/log/error.log



log4j.appender.error.Append = true



log4j.appender.error.Threshold = ERROR



log4j.appender.error.layout = org.apache.log4j.PatternLayout



log4j.appender.error.layout.ConversionPattern = %d{yyyy-MM-dd HH:mm:ss a} [T



I have expected that the log of apache mina sshd will be displayed on the console,but nothing came out when the project run, how can i see the log of apache mina sshd?










share|improve this question





























    0















    I am building a demo base on Apache Mina SSHD, and i import log4j by maven and config log4j,the configuration of log4j like this:



    # priority  :debug<info<warn<error


    you cannot specify every priority with different file for log4j



    log4j.rootLogger=debug,stdout,info,debug,warn,error



    console



    log4j.appender.stdout=org.apache.log4j.ConsoleAppender



    log4j.appender.stdout.layout=org.apache.log4j.PatternLayout



    log4j.appender.stdout.layout.ConversionPattern= [%d{yyyy-MM-dd HH:mm:ss a}]:%p %l%m%n



    info log



    log4j.logger.info=info



    log4j.appender.info=org.apache.log4j.DailyRollingFileAppender



    log4j.appender.info.DatePattern='_'yyyy-MM-dd'.log'



    log4j.appender.info.File=./src/com/hp/log/info.log



    log4j.appender.info.Append=true



    log4j.appender.info.Threshold=INFO



    log4j.appender.info.layout=org.apache.log4j.PatternLayout



    log4j.appender.info.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss a} [Thread: %t][ Class:%c >> Method: %l ]%n%p:%m%n



    debug log



    log4j.logger.debug=debug



    log4j.appender.debug=org.apache.log4j.DailyRollingFileAppender



    log4j.appender.debug.DatePattern='_'yyyy-MM-dd'.log'



    log4j.appender.debug.File=./src/com/hp/log/debug.log



    log4j.appender.debug.Append=true



    log4j.appender.debug.Threshold=DEBUG



    log4j.appender.debug.layout=org.apache.log4j.PatternLayout



    log4j.appender.debug.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss a} [Thread: %t][ Class:%c >> Method: %l ]%n%p:%m%n



    warn log



    log4j.logger.warn=warn



    log4j.appender.warn=org.apache.log4j.DailyRollingFileAppender



    log4j.appender.warn.DatePattern='_'yyyy-MM-dd'.log'



    log4j.appender.warn.File=./src/com/hp/log/warn.log



    log4j.appender.warn.Append=true



    log4j.appender.warn.Threshold=WARN



    log4j.appender.warn.layout=org.apache.log4j.PatternLayout



    log4j.appender.warn.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss a} [Thread: %t][ Class:%c >> Method: %l ]%n%p:%m%n



    error



    log4j.logger.error=error



    log4j.appender.error = org.apache.log4j.DailyRollingFileAppender



    log4j.appender.error.DatePattern='_'yyyy-MM-dd'.log'



    log4j.appender.error.File = ./src/com/hp/log/error.log



    log4j.appender.error.Append = true



    log4j.appender.error.Threshold = ERROR



    log4j.appender.error.layout = org.apache.log4j.PatternLayout



    log4j.appender.error.layout.ConversionPattern = %d{yyyy-MM-dd HH:mm:ss a} [T



    I have expected that the log of apache mina sshd will be displayed on the console,but nothing came out when the project run, how can i see the log of apache mina sshd?










    share|improve this question



























      0












      0








      0








      I am building a demo base on Apache Mina SSHD, and i import log4j by maven and config log4j,the configuration of log4j like this:



      # priority  :debug<info<warn<error


      you cannot specify every priority with different file for log4j



      log4j.rootLogger=debug,stdout,info,debug,warn,error



      console



      log4j.appender.stdout=org.apache.log4j.ConsoleAppender



      log4j.appender.stdout.layout=org.apache.log4j.PatternLayout



      log4j.appender.stdout.layout.ConversionPattern= [%d{yyyy-MM-dd HH:mm:ss a}]:%p %l%m%n



      info log



      log4j.logger.info=info



      log4j.appender.info=org.apache.log4j.DailyRollingFileAppender



      log4j.appender.info.DatePattern='_'yyyy-MM-dd'.log'



      log4j.appender.info.File=./src/com/hp/log/info.log



      log4j.appender.info.Append=true



      log4j.appender.info.Threshold=INFO



      log4j.appender.info.layout=org.apache.log4j.PatternLayout



      log4j.appender.info.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss a} [Thread: %t][ Class:%c >> Method: %l ]%n%p:%m%n



      debug log



      log4j.logger.debug=debug



      log4j.appender.debug=org.apache.log4j.DailyRollingFileAppender



      log4j.appender.debug.DatePattern='_'yyyy-MM-dd'.log'



      log4j.appender.debug.File=./src/com/hp/log/debug.log



      log4j.appender.debug.Append=true



      log4j.appender.debug.Threshold=DEBUG



      log4j.appender.debug.layout=org.apache.log4j.PatternLayout



      log4j.appender.debug.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss a} [Thread: %t][ Class:%c >> Method: %l ]%n%p:%m%n



      warn log



      log4j.logger.warn=warn



      log4j.appender.warn=org.apache.log4j.DailyRollingFileAppender



      log4j.appender.warn.DatePattern='_'yyyy-MM-dd'.log'



      log4j.appender.warn.File=./src/com/hp/log/warn.log



      log4j.appender.warn.Append=true



      log4j.appender.warn.Threshold=WARN



      log4j.appender.warn.layout=org.apache.log4j.PatternLayout



      log4j.appender.warn.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss a} [Thread: %t][ Class:%c >> Method: %l ]%n%p:%m%n



      error



      log4j.logger.error=error



      log4j.appender.error = org.apache.log4j.DailyRollingFileAppender



      log4j.appender.error.DatePattern='_'yyyy-MM-dd'.log'



      log4j.appender.error.File = ./src/com/hp/log/error.log



      log4j.appender.error.Append = true



      log4j.appender.error.Threshold = ERROR



      log4j.appender.error.layout = org.apache.log4j.PatternLayout



      log4j.appender.error.layout.ConversionPattern = %d{yyyy-MM-dd HH:mm:ss a} [T



      I have expected that the log of apache mina sshd will be displayed on the console,but nothing came out when the project run, how can i see the log of apache mina sshd?










      share|improve this question
















      I am building a demo base on Apache Mina SSHD, and i import log4j by maven and config log4j,the configuration of log4j like this:



      # priority  :debug<info<warn<error


      you cannot specify every priority with different file for log4j



      log4j.rootLogger=debug,stdout,info,debug,warn,error



      console



      log4j.appender.stdout=org.apache.log4j.ConsoleAppender



      log4j.appender.stdout.layout=org.apache.log4j.PatternLayout



      log4j.appender.stdout.layout.ConversionPattern= [%d{yyyy-MM-dd HH:mm:ss a}]:%p %l%m%n



      info log



      log4j.logger.info=info



      log4j.appender.info=org.apache.log4j.DailyRollingFileAppender



      log4j.appender.info.DatePattern='_'yyyy-MM-dd'.log'



      log4j.appender.info.File=./src/com/hp/log/info.log



      log4j.appender.info.Append=true



      log4j.appender.info.Threshold=INFO



      log4j.appender.info.layout=org.apache.log4j.PatternLayout



      log4j.appender.info.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss a} [Thread: %t][ Class:%c >> Method: %l ]%n%p:%m%n



      debug log



      log4j.logger.debug=debug



      log4j.appender.debug=org.apache.log4j.DailyRollingFileAppender



      log4j.appender.debug.DatePattern='_'yyyy-MM-dd'.log'



      log4j.appender.debug.File=./src/com/hp/log/debug.log



      log4j.appender.debug.Append=true



      log4j.appender.debug.Threshold=DEBUG



      log4j.appender.debug.layout=org.apache.log4j.PatternLayout



      log4j.appender.debug.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss a} [Thread: %t][ Class:%c >> Method: %l ]%n%p:%m%n



      warn log



      log4j.logger.warn=warn



      log4j.appender.warn=org.apache.log4j.DailyRollingFileAppender



      log4j.appender.warn.DatePattern='_'yyyy-MM-dd'.log'



      log4j.appender.warn.File=./src/com/hp/log/warn.log



      log4j.appender.warn.Append=true



      log4j.appender.warn.Threshold=WARN



      log4j.appender.warn.layout=org.apache.log4j.PatternLayout



      log4j.appender.warn.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss a} [Thread: %t][ Class:%c >> Method: %l ]%n%p:%m%n



      error



      log4j.logger.error=error



      log4j.appender.error = org.apache.log4j.DailyRollingFileAppender



      log4j.appender.error.DatePattern='_'yyyy-MM-dd'.log'



      log4j.appender.error.File = ./src/com/hp/log/error.log



      log4j.appender.error.Append = true



      log4j.appender.error.Threshold = ERROR



      log4j.appender.error.layout = org.apache.log4j.PatternLayout



      log4j.appender.error.layout.ConversionPattern = %d{yyyy-MM-dd HH:mm:ss a} [T



      I have expected that the log of apache mina sshd will be displayed on the console,but nothing came out when the project run, how can i see the log of apache mina sshd?







      java apache log4j






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 31 '18 at 12:27









      Shahnewaz

      392311




      392311










      asked Dec 31 '18 at 12:06









      zhangbingzhangbing

      85




      85
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53987320%2fhow-to-ouput-the-log-of-apache-mina-sshd%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53987320%2fhow-to-ouput-the-log-of-apache-mina-sshd%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Lo sUGdf27g rhcZyxMwc8,of6S6QRWTicXL,UqSrIE8c1IZS
          S 6cmENkG8i4T3ec33,0PF4m6xZT pR19,h Qwm wrlsdu0nMloAhxeVzN4p,AOE 0w0jLUhLxJlzeMduoH,DvJtX,sSGcI3F

          Popular posts from this blog

          Monofisismo

          Angular Downloading a file using contenturl with Basic Authentication

          Olmecas