Skip to content

Commit

Permalink
added logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mamari90 committed Jan 24, 2024
1 parent 253e488 commit 39bc6af
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/synthetic-monitoring.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ const account = process.env.STORAGE_ACCOUNT_NAME;
const accountKey = process.env.STORAGE_ACCOUNT_KEY;
const tableName = process.env.STORAGE_ACCOUNT_TABLE_NAME

console.log("--------")
console.log(account)
console.log(accountKey)
console.log(tableName)
console.log("--------")
const credential = new AzureNamedKeyCredential(account, accountKey);
const tableClient = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);

Expand Down

0 comments on commit 39bc6af

Please sign in to comment.