Skip to content

Commit 7fff0e2

Browse files
committed
Update File System.ps1
- Updated logging levels for PowerShell logging improvements
1 parent 18a6b88 commit 7fff0e2

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

File System.ps1

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function Idm-SystemInfo {
2323
[string] $ConnectionParams
2424
)
2525

26-
Log info "-Connection=$Connection -TestConnection=$TestConnection -Configuration=$Configuration -ConnectionParams='$ConnectionParams'"
26+
Log verbose "-Connection=$Connection -TestConnection=$TestConnection -Configuration=$Configuration -ConnectionParams='$ConnectionParams'"
2727

2828
if ($Connection) {
2929
@(
@@ -216,7 +216,7 @@ function Idm-SystemInfo {
216216
)
217217
}
218218

219-
Log info "Done"
219+
Log verbose "Done"
220220
}
221221

222222

@@ -270,7 +270,7 @@ function Idm-FilesRead {
270270
[string] $FunctionParams
271271
)
272272

273-
Log info "-GetMeta=$GetMeta -SystemParams='$SystemParams' -FunctionParams='$FunctionParams'"
273+
Log verbose "-GetMeta=$GetMeta -SystemParams='$SystemParams' -FunctionParams='$FunctionParams'"
274274

275275
if ($GetMeta) {
276276
#
@@ -400,7 +400,7 @@ function Idm-FilesRead {
400400

401401
}
402402

403-
Log info "Done"
403+
Log verbose "Done"
404404
}
405405

406406

@@ -413,7 +413,7 @@ function Idm-FolderCreate {
413413
[string] $FunctionParams
414414
)
415415

416-
Log info "-GetMeta=$GetMeta -SystemParams='$SystemParams' -FunctionParams='$FunctionParams'"
416+
Log verbose "-GetMeta=$GetMeta -SystemParams='$SystemParams' -FunctionParams='$FunctionParams'"
417417

418418
if ($GetMeta) {
419419
#
@@ -458,7 +458,7 @@ function Idm-FolderCreate {
458458
$rv
459459
}
460460

461-
Log info "Done"
461+
Log verbose "Done"
462462
}
463463

464464

@@ -471,7 +471,7 @@ function Idm-ExplicitACEsRead {
471471
[string] $FunctionParams
472472
)
473473

474-
Log info "-GetMeta=$GetMeta -SystemParams='$SystemParams' -FunctionParams='$FunctionParams'"
474+
Log verbose "-GetMeta=$GetMeta -SystemParams='$SystemParams' -FunctionParams='$FunctionParams'"
475475

476476
if ($GetMeta) {
477477
# Purposely left empty: nothing to configure
@@ -558,7 +558,7 @@ function Idm-ExplicitACEsRead {
558558
$out | Sort-Object { $_.FullName; $_.Ix }
559559
}
560560

561-
Log info "Done"
561+
Log verbose "Done"
562562
}
563563

564564

@@ -571,7 +571,7 @@ function Idm-FoldersRead {
571571
[string] $FunctionParams
572572
)
573573

574-
Log info "-GetMeta=$GetMeta -SystemParams='$SystemParams' -FunctionParams='$FunctionParams'"
574+
Log verbose "-GetMeta=$GetMeta -SystemParams='$SystemParams' -FunctionParams='$FunctionParams'"
575575

576576
if ($GetMeta) {
577577
#
@@ -727,7 +727,7 @@ function Idm-FoldersRead {
727727

728728
}
729729

730-
Log info "Done"
730+
Log verbose "Done"
731731
}
732732

733733

@@ -740,7 +740,7 @@ function Idm-FolderUpdate {
740740
[string] $FunctionParams
741741
)
742742

743-
Log info "-GetMeta=$GetMeta -SystemParams='$SystemParams' -FunctionParams='$FunctionParams'"
743+
Log verbose "-GetMeta=$GetMeta -SystemParams='$SystemParams' -FunctionParams='$FunctionParams'"
744744

745745
if ($GetMeta) {
746746
#
@@ -784,7 +784,7 @@ function Idm-FolderUpdate {
784784
$function_params
785785
}
786786

787-
Log info "Done"
787+
Log verbose "Done"
788788
}
789789

790790

@@ -797,7 +797,7 @@ function Idm-FolderDelete {
797797
[string] $FunctionParams
798798
)
799799

800-
Log info "-GetMeta=$GetMeta -SystemParams='$SystemParams' -FunctionParams='$FunctionParams'"
800+
Log verbose "-GetMeta=$GetMeta -SystemParams='$SystemParams' -FunctionParams='$FunctionParams'"
801801

802802
if ($GetMeta) {
803803
#
@@ -826,7 +826,7 @@ function Idm-FolderDelete {
826826
$rv
827827
}
828828

829-
Log info "Done"
829+
Log verbose "Done"
830830
}
831831

832832

0 commit comments

Comments
 (0)