Forum Discussion

christianf's avatar
christianf
Occasional Contributor
7 years ago
Solved

I am looking for a way to write to different log files in one test.

What I am looking for is something like

 

log1 = logfile("log1.txt")

log2 = logfile("log2.txt")

log1.Message("test started")

log2.Message("special message for the other log")

log1.Message("test failed!")

log2.Message(..)