@@ -134,7 +134,6 @@ func ExtractIntegrationBinaries(logger *zap.Logger, plugin platformspec.PluginSp
134
134
logger .Error ("failed to open manifest file" , zap .Error (err ))
135
135
return nil , nil , fmt .Errorf ("open manifest file: %w" , err )
136
136
}
137
- logger .Info ("manifestFile" , zap .String ("file" , string (manifestFile )))
138
137
139
138
var m models.Manifest
140
139
// decode yaml
@@ -150,6 +149,7 @@ func ExtractIntegrationBinaries(logger *zap.Logger, plugin platformspec.PluginSp
150
149
if strings .ToLower (m .DiscoveryType ) == "task" {
151
150
discoveryType = models .IntegrationPluginDiscoveryTypeTask
152
151
}
152
+ logger .Info ("platform binary path" , zap .String ("path" , baseDir + "/integarion_type/" + plugin .Components .PlatformBinary .PathInArchive ))
153
153
integrationPlugin , err = os .ReadFile (baseDir + "/integarion_type/" + plugin .Components .PlatformBinary .PathInArchive )
154
154
if err != nil {
155
155
logger .Error ("failed to open integration-plugin file" , zap .Error (err ), zap .String ("url" , plugin .Components .PlatformBinary .URI ))
@@ -175,6 +175,7 @@ func ExtractIntegrationBinaries(logger *zap.Logger, plugin platformspec.PluginSp
175
175
url = plugin .Components .CloudQLBinary .URI
176
176
}
177
177
178
+ logger .Info ("cloudql binary path" , zap .String ("path" , baseDir + "/integarion_type/" + plugin .Components .CloudQLBinary .PathInArchive ))
178
179
cloudqlPlugin , err = os .ReadFile (baseDir + "/integarion_type/" + plugin .Components .CloudQLBinary .PathInArchive )
179
180
if err != nil {
180
181
logger .Error ("failed to open cloudql-plugin file" , zap .Error (err ), zap .String ("url" , plugin .Components .CloudQLBinary .URI ))
0 commit comments