aboutsummaryrefslogtreecommitdiff
path: root/session.go
diff options
context:
space:
mode:
Diffstat (limited to 'session.go')
-rw-r--r--session.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/session.go b/session.go
index d592a94..8a1c323 100644
--- a/session.go
+++ b/session.go
@@ -443,8 +443,6 @@ func (ses *Session) executeScriptOnLocal(req *ExecRequest, pos linePosition) (er
pos.end = max - 1
}
- req.mlog.Outf(`=== BEGIN: %s %s %s`, req.Mode, req.Script, req.LineRange)
-
for x := pos.start; x <= pos.end; x++ {
stmt := req.script.stmts[x]
if stmt == nil {
@@ -476,7 +474,6 @@ func (ses *Session) executeScriptOnLocal(req *ExecRequest, pos linePosition) (er
return err
}
}
- req.mlog.Outf(`=== END`)
return nil
}
@@ -489,8 +486,6 @@ func (ses *Session) executeScriptOnRemote(req *ExecRequest, pos linePosition) (e
pos.end = max - 1
}
- req.mlog.Outf(`=== BEGIN: %s %s %s`, req.Mode, req.Script, req.LineRange)
-
for x := pos.start; x <= pos.end; x++ {
stmt := req.script.stmts[x]
if stmt == nil {
@@ -523,7 +518,6 @@ func (ses *Session) executeScriptOnRemote(req *ExecRequest, pos linePosition) (e
return err
}
}
- req.mlog.Outf(`=== END`)
return nil
}