From 741f2fd714ab37de3bd5732260bac94bb0e4a19f Mon Sep 17 00:00:00 2001
From: Sergey-Murtazin <sergey-murtazin@github.com>
Date: Wed, 19 Jan 2022 18:04:28 +0300
Subject: [PATCH] Add debug strings

---
 src/installer.ts | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/installer.ts b/src/installer.ts
index 7285215..42c6fb8 100644
--- a/src/installer.ts
+++ b/src/installer.ts
@@ -34,10 +34,13 @@ export async function getGo(
   checkLatest: boolean,
   auth: string | undefined
 ) {
+  core.info("DEBUG: Inside getGo")
   let osPlat: string = os.platform();
   let osArch: string = os.arch();
   
   if (checkLatest) {
+    core.info(`DEBUG: Inside is checkLatest: ${checkLatest}`)
+
     core.info('Attempt to resolve the latest version from manifest...');
     const resolvedVersion = await resolveVersionFromManifest(
       versionSpec,