Skip to content

Commit 3a5c9a6

Browse files
committed
feat: remove console log in saveModelNickname function
This commit removes the console.log statement in the `saveModelNickname` function within `src/db/nickname.ts`. This logging statement was likely used for debugging purposes and is no longer needed in the production code. Removing it cleans up the codebase and avoids unnecessary logging.
1 parent 3f364e7 commit 3a5c9a6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/db/nickname.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ export const saveModelNickname = async (
6262
model_avatar?: string
6363
}
6464
) => {
65-
console.log("saveModelNickname", model_id, model_name, model_avatar)
6665
const modelNickname = new ModelNickname()
6766
return await modelNickname.saveModelNickname(model_id, model_name, model_avatar)
6867
}

0 commit comments

Comments
 (0)