Skip to content

Commit

Permalink
Merge pull request #1 from arcalot/log-v2
Browse files Browse the repository at this point in the history
Upgrade to Log v2
  • Loading branch information
jaredoconnell authored Feb 27, 2023
2 parents bf5292d + 40fc7aa commit 0a29b18
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion any.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package deployer

import (
"go.arcalot.io/log"
log "go.arcalot.io/log/v2"
"go.flow.arcalot.io/pluginsdk/schema"
)

Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module go.flow.arcalot.io/deployer
go 1.18

require (
go.arcalot.io/assert v1.3.0 // indirect
go.arcalot.io/lang v1.0.0 // indirect
go.arcalot.io/log v1.2.0 // indirect
go.flow.arcalot.io/pluginsdk v0.0.0-20221025073845-be663ec22293 // indirect
go.arcalot.io/assert v1.3.0
go.arcalot.io/lang v1.0.0
go.arcalot.io/log/v2 v2.0.0
go.flow.arcalot.io/pluginsdk v0.0.0-20221025073845-be663ec22293
)
5 changes: 3 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ go.arcalot.io/assert v1.3.0 h1:+uQex4s9gezATpTyFxUY5dlAcrwI1Me5fSmdcydGHho=
go.arcalot.io/assert v1.3.0/go.mod h1:Xy3ScX0p9IMY89gdsgexOKxnmDr0nGHG9dV7p8Uxg7w=
go.arcalot.io/lang v1.0.0 h1:mgDaieT4wWdZTnR4V7+/pgYRmzfU7VZZgIzHccuxAbY=
go.arcalot.io/lang v1.0.0/go.mod h1:ALqfYEhAzC2WoGLaycmJoNJd5NmkR7V1PSKp/c5D278=
go.arcalot.io/log v1.2.0 h1:EOfehJoycnpYXOBwYribLzfYb9y2YKVNWJ0kCzqnJSw=
go.arcalot.io/log v1.2.0/go.mod h1:g/oBcBi33s6GxFyiEdbnKtEPBg62t2Uc9cdF3fSuuyg=
go.arcalot.io/log/v2 v2.0.0 h1:mbmsWDVBXZNWrDzUh5JLzeGCQ59kTuMFs+pyfJGc1hk=
go.arcalot.io/log/v2 v2.0.0/go.mod h1:1V8jnFIIGwh2CtcGkHNOmy1nCo7LbazQNkUcnKYNMn4=
go.flow.arcalot.io/pluginsdk v0.0.0-20221025073845-be663ec22293 h1:tuCGnU+3L8vZzt3FJKz0q2tX7W2eGvEUzRQzhPM1tgI=
go.flow.arcalot.io/pluginsdk v0.0.0-20221025073845-be663ec22293/go.mod h1:iblQl4Bx9gteegDXLD4WvU7S4Au0vkK6yKTc9mX00ls=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
2 changes: 1 addition & 1 deletion interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"context"
"io"

"go.arcalot.io/log"
log "go.arcalot.io/log/v2"
"go.flow.arcalot.io/pluginsdk/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion registry/helper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"fmt"

"go.arcalot.io/log"
log "go.arcalot.io/log/v2"
"go.flow.arcalot.io/deployer"
"go.flow.arcalot.io/pluginsdk/schema"
)
Expand Down
2 changes: 1 addition & 1 deletion registry/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"reflect"

"go.arcalot.io/log"
log "go.arcalot.io/log/v2"
"go.flow.arcalot.io/deployer"
"go.flow.arcalot.io/pluginsdk/schema"
)
Expand Down
2 changes: 1 addition & 1 deletion registry/registry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"

"go.arcalot.io/assert"
"go.arcalot.io/log"
log "go.arcalot.io/log/v2"
"go.flow.arcalot.io/deployer/registry"
)

Expand Down

0 comments on commit 0a29b18

Please sign in to comment.