Skip to content

Commit c63a332

Browse files
authored
Update logs.mdx - no logger object return
1 parent 0dc23a2 commit c63a332

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data-collection/logs.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Initialize the Quotient logger with configuration settings for your application:
3030

3131
quotient = QuotientAI(api_key="your-quotient-api-key")
3232

33-
logger = quotient.logger.init(
33+
quotient.logger.init(
3434
app_name="my-first-app",
3535
environment="dev",
3636
detections=[DetectionType.HALLUCINATION, DetectionType.DOCUMENT_RELEVANCY],
@@ -43,7 +43,7 @@ Initialize the Quotient logger with configuration settings for your application:
4343

4444
const quotient = new QuotientAI({ apiKey: "your-quotient-api-key" });
4545

46-
const logger = quotient.logger.init({
46+
quotient.logger.init({
4747
appName: "my-first-app",
4848
environment: "dev",
4949
detections: [DetectionType.HALLUCINATION, DetectionType.DOCUMENT_RELEVANCY],

0 commit comments

Comments
 (0)