Packages
Multi-surface application runtime for Elixir. One TEA module renders to terminal, browser (LiveView), SSH, and MCP (agents). 30+ widgets, flexbox + CSS grid, AI agent runtime, distributed swarm with CRDTs, time-travel debugging, session recording, sandboxed REPL, and agentic commerce.
Current section
Files
Jump to
Current section
Files
lib/raxol/core/runtime/debug.ex
defmodule Raxol.Core.Runtime.Debug do
@moduledoc """
Simple logging wrapper for the runtime.
"""
require Logger
def debug(message), do: Logger.debug(message)
def info(message), do: Logger.info(message)
# Use warning/1
def warn(message), do: Logger.warning(message)
def error(message), do: Logger.error(message)
end