nestlog: + trailing args with .end_scope()
This commit is contained in:
parent
605f4df41f
commit
7c964ab93c
3 changed files with 16 additions and 15 deletions
|
|
@ -14,7 +14,8 @@ fib(int n) {
|
|||
retval = fib(n - 1) + fib(n - 2);
|
||||
log(":n ", n);
|
||||
}
|
||||
log("<- :retval ", retval);
|
||||
|
||||
log.end_scope("<- :retval ", retval);
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue