0 Replies Latest reply on Mar 3, 2018 5:50 PM by gaurav12

    How can I stop SOP statements to print on server console window without commenting the statement ? Dynamically is Possible?

    gaurav12

      -2down votefavorite

       

       

      Here in below code Two SOP statement is their I don't want to print them on server console without commenting dynamically it's need to disable...

      PrintWriter pw=null; pw=response.getWriter();
      response.setContentType("application/json");
      TableService ts=new TableService(); 
      **System.out.println("List of Data");**
      List<DalGridRoleLink> dataList=ts.getData();
      **System.out.println(dataList);**
      JSONArray json=new JSONArray();