Browse Source

Logic/Action logs

Vova Tkach 6 years ago
parent
commit
7b0731b490
1 changed files with 2 additions and 0 deletions
  1. 2 0
      engine/wrapper/wrapper.go

+ 2 - 0
engine/wrapper/wrapper.go

@@ -147,6 +147,7 @@ func (e *Wrapper) Run(hRun handleRun) {
 
 	// Call action
 	if e.Action.Call() {
+		e.Log("200")
 		e.Session.Save()
 		return
 	}
@@ -154,6 +155,7 @@ func (e *Wrapper) Run(hRun handleRun) {
 	// Logic
 	if hRun != nil {
 		if hRun(e) {
+			e.Log("200")
 			e.Session.Save()
 			return
 		}