We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44d9932 commit 4052c8dCopy full SHA for 4052c8d
src/commands/scan/scan-reachability.mts
@@ -1,7 +1,9 @@
1
+import { logger } from '@socketsecurity/registry/lib/logger'
2
+
3
import type { CResult } from '../../types.mts'
4
5
export async function scanReachability(cwd: string): Promise<CResult<unknown>> {
- console.log('Scanning now... as soon as you implement me! From', cwd)
6
+ logger.log('Scanning now... as soon as you implement me! From', cwd)
7
8
return { ok: true, data: undefined }
9
}
0 commit comments