More azurecore cleanup (#22748)

* More azurecore cleanup

* convert to any

* Fix name
This commit is contained in:
Charles Gagnon
2023-04-17 10:29:49 -07:00
committed by GitHub
parent f66d3349b9
commit 4a4580e9ef
5 changed files with 61 additions and 61 deletions

View File

@@ -64,7 +64,7 @@ export class Logger {
* @param stringsToShorten Set of strings to shorten
* @param vals Any other values to add on to the end of the log message
*/
static piiSanitized(msg: any, objsToSanitize: { name: string, objOrArray: any | any[] }[], stringsToShorten: { name: string, value: string }[], ...vals: any[]) {
static piiSanitized(msg: any, objsToSanitize: { name: string, objOrArray: any }[], stringsToShorten: { name: string, value: string }[], ...vals: any[]) {
if (this.piiLogging) {
msg = [
msg,