Debug.Log Extensions
Documentation (1.1.9)
|
|
static |
Logs to the Console the name and value of classMember class member along with method signature on the second line to provide additional context.
public void SetActivePage(Page value) { activePage = value;
Debug.Log(()=>activePage, ()=>SetActivePage(value)); }
classMember | Expression pointing to a class member whose name and value will be logged. |
methodContext | Expression pointing to a method to which the message relates. |