A debug panel for Unity3D to always show the current value of variables
Import the last package on your project and that's all!
To log a variable awesomeVariable with the label "My Awesome Variable" on the group "My Awesome Group":
DebugPanel.Log("My Awesome Variable", awesomeVariable, "My Awesome Group");
A more concrete example to log the current time in any group:
DebugPanel.Log("Time", Time.time);