Skip to content

Commit 61ad5bd

Browse files
committed
[fix] correctly log object
1 parent f8934dd commit 61ad5bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/hashing/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export abstract class BaseHasher {
4343

4444
// load the salt value based on the config
4545
this.saltValue = config.salt.value;
46-
log(`[DEBUG] Instantiated hasher; saltLen='${this.saltValue.length}', config='${JSON.stringify(this.config, null, 4)}'`);
46+
log(`[DEBUG] Instantiated hasher; saltLen='${this.saltValue.length}', config='${JSON.stringify(this.config)}'`);
4747
}
4848

4949
// Generates a hash based on the configuration from an already concatenated string

0 commit comments

Comments
 (0)