Skip to content

Commit

Permalink
Sync eng/common directory with azure-sdk-tools repository for Tools P…
Browse files Browse the repository at this point in the history
…R 974
  • Loading branch information
azure-sdk committed Sep 11, 2020
1 parent 2491428 commit 67e7d58
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
2 changes: 1 addition & 1 deletion eng/common/scripts/common.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $EngScriptsLanguageSettings = Join-path $EngScriptsDir "Language-Settings.ps1"
if (Test-Path $EngScriptsLanguageSettings) {
. $EngScriptsLanguageSettings
}
If ($LanguageShort -eq $null)
if ($null -eq $LanguageShort)
{
$LangaugeShort = $Language
}
Expand Down
40 changes: 40 additions & 0 deletions eng/common/scripts/logging.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
if ($null -eq $isDevOpsRun)
{
$isDevOpsRun = ($null -ne $env:SYSTEM_TEAMPROJECTID)
}

function LogWarning
{
if ($isDevOpsRun)
{
Write-Host "##vso[task.LogIssue type=warning;]$args"
}
else
{
Write-Warning "$args"
}
}

function LogError
{
if ($isDevOpsRun)
{
Write-Host "##vso[task.LogIssue type=error;]$args"
}
else
{
Write-Error "$args"
}
}

function LogDebug
{
if ($isDevOpsRun)
{
Write-Host "##vso[task.LogIssue type=debug;]$args"
}
else
{
Write-Debug "$args"
}
}

0 comments on commit 67e7d58

Please sign in to comment.