Skip to content

Commit

Permalink
bad A character cleanup '    '
Browse files Browse the repository at this point in the history
  • Loading branch information
jagilber committed Jul 26, 2017
1 parent 936634a commit 8c64348
Show file tree
Hide file tree
Showing 22 changed files with 1,434 additions and 1,413 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,8 @@ ModelManifest.xml
# CUSTOM

*.txt
*.ini
*.req
*.cer
*.pfx
**/gather
Expand Down
4 changes: 2 additions & 2 deletions 2k12-rds-tracing/event-log-manager.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ function log-info($data, [switch] $nocolor = $false, [switch] $debugOnly = $fals
if($global:logStream -eq $null)
{
$global:logStream = new-object System.IO.StreamWriter ($logFile,$true)
$global:logTimer.Interval = 5000 #5 seconds 
$global:logTimer.Interval = 5000 #5 seconds

Register-ObjectEvent -InputObject $global:logTimer -EventName elapsed -SourceIdentifier logTimer -Action `
{
Expand All @@ -1122,7 +1122,7 @@ function log-info($data, [switch] $nocolor = $false, [switch] $debugOnly = $fals
}

# reset timer
$global:logTimer.Interval = 5000 #5 seconds 
$global:logTimer.Interval = 5000 #5 seconds
$global:logStream.WriteLine("$([DateTime]::Now.ToString())::$([Diagnostics.Process]::GetCurrentProcess().ID)::$($data)")
}
catch {}
Expand Down
4 changes: 2 additions & 2 deletions 2k12-remote-manager/events-export/event-log-manager.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ function log-info($data, [switch] $nocolor = $false, [switch] $debugOnly = $fals
if($global:logStream -eq $null)
{
$global:logStream = new-object System.IO.StreamWriter ($logFile,$true)
$global:logTimer.Interval = 5000 #5 seconds 
$global:logTimer.Interval = 5000 #5 seconds

Register-ObjectEvent -InputObject $global:logTimer -EventName elapsed -SourceIdentifier logTimer -Action `
{
Expand All @@ -1092,7 +1092,7 @@ function log-info($data, [switch] $nocolor = $false, [switch] $debugOnly = $fals
}

# reset timer
$global:logTimer.Interval = 5000 #5 seconds 
$global:logTimer.Interval = 5000 #5 seconds
$global:logStream.WriteLine("$([DateTime]::Now.ToString())::$([Diagnostics.Process]::GetCurrentProcess().ID)::$($data)")
}
catch {}
Expand Down
Loading

0 comments on commit 8c64348

Please sign in to comment.