Skip to content

Commit

Permalink
small logging fix (#6332)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShreyasRmsft authored Feb 1, 2018
1 parent 1c87e74 commit 13b2a95
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Tasks/VsTest/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class Helper {
public static addToProcessEnvVars(envVars: { [key: string]: string; }, name: string, value: string) {
if (!this.isNullEmptyOrUndefined(value)) {
if (!name.includes('AccessToken')) {
tl.debug('Setting the process env var :' + name + ' to :' + value);
tl.debug('Setting the process env var: ' + name + ' to: ' + value);
}
envVars[name] = value;
}
Expand Down
2 changes: 1 addition & 1 deletion Tasks/VsTest/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"version": {
"Major": 2,
"Minor": 3,
"Patch": 20
"Patch": 21
},
"demands": [
"vstest"
Expand Down
2 changes: 1 addition & 1 deletion Tasks/VsTest/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"version": {
"Major": 2,
"Minor": 3,
"Patch": 20
"Patch": 21
},
"demands": [
"vstest"
Expand Down

0 comments on commit 13b2a95

Please sign in to comment.