5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-04 06:22:16 +08:00

chore: remove debug output

This commit is contained in:
Lea Anthony 2019-09-03 19:36:21 +10:00
parent cc0617d247
commit af1a1a2498
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405

View File

@ -195,7 +195,7 @@ func (b *Manager) processFunctionCall(callData *messages.CallData) (interface{},
return nil, errorResult.Interface().(error) return nil, errorResult.Interface().(error)
} }
} }
fmt.Printf("result = '%+v'\n", result) // fmt.Printf("result = '%+v'\n", result)
if len(result) > 0 { if len(result) > 0 {
return result[0].Interface(), nil return result[0].Interface(), nil
} }