Skip to content

Commit 2f2be30

Browse files
committed
fix other impl
1 parent cfccc05 commit 2f2be30

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

internal/api/api.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,11 @@ func (api *API) Log(s string) {
115115
api.options.Logger.Info(s)
116116
}
117117

118+
// Log implements ProjectHost.
119+
func (api *API) Trace(s string) {
120+
api.options.Logger.Info(s)
121+
}
122+
118123
// NewLine implements ProjectHost.
119124
func (api *API) NewLine() string {
120125
return api.host.NewLine()

0 commit comments

Comments
 (0)