Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 234 Bytes

debug.md

File metadata and controls

26 lines (21 loc) · 234 Bytes

Debug

Java - Android

Log.d(tag, variable);

Javascript

console.log(variable);

Objective-C

NSLog(@"%@", variable);

PHP

var_dump($variable);

Unity3D

Debug.Log(variable);