Skip to content
Jack Brookes edited this page Nov 28, 2020 ยท 6 revisions

UXF Automatically Logs all Debug.Log calls within a Session to the session folder as log.csv. That means if you write Debug.Log("Something happened!") you will see Something happened!, along with the timestamp in the log.csv file in the session folder. This is handled by the Session Logger component. This can be used to log the time that events occur throughout the session but this is not recommended in most cases; recording timestamps as results in the data collection system is often preferable.

You can call UXF.SessionLogger.instance.Log("my message..."); to log a message at any time. This will be stored in the log output.

๐Ÿง  Core topics

โ“ More help


๐Ÿ‘ฉโ€๐Ÿ’ป Programming reference

Unit tests

Clone this wiki locally