We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa49a23 commit f9d2ebaCopy full SHA for f9d2eba
src/frameworks/terraformFramework.ts
@@ -256,6 +256,9 @@ export class TerraformFramework implements IFramework {
256
257
// get state by running "terraform show --json" command
258
try {
259
+ Logger.verbose(
260
+ `[${this.logName}] Getting state with '${this.stateCommand}' command`,
261
+ );
262
output = await execAsync(this.stateCommand);
263
} catch (error: any) {
264
throw new Error(
0 commit comments