Skip to main content

Your First Log

Send your first log to Recall.

Send a Log

BrainzLab::Recall.info("Hello from Brainz Lab!")

Add Structured Data

BrainzLab::Recall.info("User signed up",
  user_id: user.id,
  email: user.email,
  plan: "pro"
)

Use Different Levels

BrainzLab::Recall.debug("Cache hit", key: "user:123")
BrainzLab::Recall.info("Order placed", order_id: order.id)
BrainzLab::Recall.warn("Rate limit approaching", current: 95)
BrainzLab::Recall.error("Payment failed", error: e.message)
BrainzLab::Recall.fatal("Database down")

View in Dashboard

  1. Go to brainzlab.ai/dashboard
  2. Click “Recall” in the sidebar
  3. See your logs in real-time

Search Your Logs

Use the query bar:
level:info since:1h

Next Steps