Change sysout logging level for Weblogic

344

You can disable the "Redirect stdout logging enabled" option to avoid most of WebLogic logging in sysout. Only low-level (java/system errors) should go to system output. I suggest to not use stdout (java System.out.println and related methods) to log server applications messages because the management of the resulting logs is difficult and system-dependent. Instead use ad-hoc logging frameworks like log4j, java.util.logging, Apache commons logging, ...

Share:
344

Related videos on Youtube

RieqyNS13
Author by

RieqyNS13

Updated on September 17, 2022

Comments

  • RieqyNS13
    RieqyNS13 over 1 year

    I am new with Jquery. but, I want to get Json multiple objects then append it into html element. here my first jquery code:

    <html>
    <head>
    <script type="text/javascript" src="Jquery/jquery.js"></script>
    <script>
    $(document).ready(function(){
        $.getJSON("http://epomia.com/tmp/dc.php", function(data){
            $.each(data, function(id, vall){
                $.each(vall, function(x, y){
                    $("#mbuh").append(y);
                });
            });
    
        });
    });
    </script>
    </head>
    <body>
    <div id="mbuh">
    </div>
    </body>
    </html>
    

    but, why doesn't want to display json data ? which are wrong ? the json in http://epomia.com/tmp/dc.php or my code ?