Skip to content

Commit 73a5822

Browse files
authored
Remove console.log in init (#20)
* remove direct console log * bump version
1 parent 223b746 commit 73a5822

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apollo-datasource-cosmosdb",
3-
"version": "0.0.16",
3+
"version": "0.0.17",
44
"description": "An Apollo data source for Azure CosmosDB",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/datasource.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ export class CosmosDataSource<TData extends { id: string }, TContext>
113113

114114
constructor(container: Container, options: CosmosDataSourceOptions = {}) {
115115
super();
116-
console.log(`options: ${options.logger}`);
117116
options?.logger?.info(`CosmosDataSource started`);
118117

119118
if (!isCosmosDbContainer(container)) {

0 commit comments

Comments
 (0)