Skip to content

Commit 4c588b1

Browse files
authored
fix(azure): Remove extra fmt.Println (#5756)
#### Summary This removes a (accidental I think) console print in the Azure plugin (it prints `0` when the plugin starts). This breaks the JSON formatting of the log when running `serve --log-format json` <!--
1 parent 674ef9b commit 4c588b1

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

  • plugins/source/azure/resources/plugin

plugins/source/azure/resources/plugin/plugin.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package plugin
22

33
import (
4-
"fmt"
5-
64
"github.com/cloudquery/cloudquery/plugins/source/azure/client"
75
"github.com/cloudquery/plugin-sdk/plugins"
86
"github.com/cloudquery/plugin-sdk/schema"
@@ -15,7 +13,6 @@ var (
1513
var Tables []*schema.Table
1614

1715
func Plugin() *plugins.SourcePlugin {
18-
fmt.Println(len(Tables))
1916
// allTables := PluginAutoGeneratedTables()
2017
// here you can append custom non-generated tables
2118
return plugins.NewSourcePlugin(

0 commit comments

Comments
 (0)