Hi Arth, You can only have a single debug log destination. However, You can take advantage of the FmtFlag special debug flag that will prepend the corresponding debug flag to every logged line. You can then use grep to filter down the lines of interest. If using bash, you can pipe the standard output of gem5 to
> gem5.opt | tee >(grep FALG_A > FLAG_A.txt) >(grep FALG_B > FLAG_B.txt) >(grep > FALG_B) … > complete_trace.txt >(…) is called process substitution in case you want to know more about that >nifty feature. Regards, Gabriel
_______________________________________________ gem5-users mailing list -- gem5-users@gem5.org To unsubscribe send an email to gem5-users-le...@gem5.org