Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add console.log #66

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ export * from './validations'
*/
export const createValidator = (
externalCalls: ExternalCalls,
components?: Pick<ContentValidatorComponents, 'logs'>
components: Pick<ContentValidatorComponents, 'logs'>
): Validator => {
const logs = components?.logs.getLogger('ContentValidator')
const logs = components.logs.getLogger('ContentValidator')

return {
validate: async (deployment) => {
for (const validation of validations) {
const result = await validation.validate({ deployment, externalCalls }, logs)
if (!result.ok) {
logs?.debug(`Validation failed:\n${result.errors?.join('\n')}`)
logs.debug(`Validation failed:\n${result.errors?.join('\n')}`)
return result
}
}
Expand Down
1 change: 1 addition & 0 deletions src/validations/access-checker/wearables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ const getThirdPartyId = (urn: BlockchainCollectionThirdParty): string =>
*/
export const wearables: Validation = {
validate: async ({ deployment, externalCalls }, logs) => {

const hasPermission = async (
subgraphUrl: string,
collection: string,
Expand Down