FYI , almost always a bad idea to write logs in this manner in a multi-threaded system.
On Thu, Mar 3, 2016 at 8:51 AM, Jayesh Guru <[email protected]> wrote: > Yes Prakash use this code to print it in a file. > > f = new FileOutputStream("C:/apache-jmeter-2.13/result.csv",true); //True > for appending file,False for ovwerwriting file > p = new PrintStream(f); > this.interpreter.setOut(p); > print("Hello World"); > f.close(); > > > *Thanks * > *Jayesh Guru | (314)609-6046 * > *Email : [email protected] <[email protected]>* > > On Thu, Mar 3, 2016 at 11:38 AM, Prakash Palnati < > [email protected]> wrote: > > > Thank you. Can I get it printed on done file? .jtl or .csv > > On 03-Mar-2016 9:44 pm, "Jayesh Guru" <[email protected]> wrote: > > > > > It is displayed on the console opened with Jmeter. > > > > > > > > > *Thanks * > > > *Jayesh Guru | (314)609-6046 * > > > *Email : [email protected] <[email protected]>* > > > > > > On Thu, Mar 3, 2016 at 11:11 AM, Prakash Palnati < > > > [email protected]> wrote: > > > > > > > Hi, > > > > > > > > Where do the results of System.Out.println go? where can I see them? > > > > > > > > used print() as it does the same as System.Out.println in beanshell > > > > > > > > > > > > Thanks in advance. > > > > > > > > > >
