Rotation returns normalized value?

I do a debug.log(transform.rotation.y) and it returns me a value of 0-1. How can I get the real rotation in degrees and not a normalized value?
Thanks

just type this:

debug.log(transform.eulerAngles.y);

more info on: http://unity3d.com/support/documentation/ScriptReference/Transform-eulerAngles.html