Skip to content
Merged
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-ts",
"version": "3.0.21",
"version": "3.0.22",
"description": "Nevermined Node",
"main": "main.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const bootstrap = async () => {
console.log(process.env.NODE_ENV)
const app = await NestFactory.create<NestExpressApplication>(ApplicationModule, {
cors: true,
logger: ['error', 'log', 'warn', 'debug'],
logger: ['error', 'log', 'warn'],
})

// http middleware logger
Expand Down
9 changes: 0 additions & 9 deletions src/shared/nevermined/nvm.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,6 @@ export class NeverminedService {
// TODO: handle configuration properly
async onModuleInit() {
const config = this.config.nvm()
Logger.debug(
`Starting NeverminedService with config:\n${JSON.stringify(
config,
(k, v) => {
return typeof v === 'undefined' ? null : v
},
2,
)}`,
)

const web3 = createPublicClient({ transport: http(config.web3ProviderUri) })
try {
Expand Down