> ## Documentation Index
> Fetch the complete documentation index at: https://namespace.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Advanced Logging

export const CenteredImage = ({src, alt, width, caption, className}) => {
  const [basePath, setBasePath] = useState("");
  useEffect(() => {
    const path = window.location.pathname;
    setBasePath(path === "/docs" || path.startsWith("/docs/") ? "/docs" : "");
  }, []);
  return <Frame caption={caption} className={className} style={{
    maxWidth: width,
    marginInline: "auto"
  }}>
			<OptimizedImage src={`${basePath}${src}`} alt={alt} />
		</Frame>;
};

To find these logs, open the [GitHub Actions dashboard](/docs/dashboard/github-actions), select a repository's workflow, open a run, and click a job to open its [job view](/docs/dashboard/github-actions#job-view).

Access comprehensive logging that goes far beyond standard GitHub Actions logs, providing visibility into every aspect of your workflow execution.

**Container logs**
Unlike traditional GitHub Actions, Namespace provides direct access to logs from running containers within your workflows.

<CenteredImage width={600} alt="Container Logs" src="/docs/images/github-actions/testcontainerlogs.webp" />

**Build logs**
Any Docker build issued from a Namespace runner is linked from the job UI, granting you direct access to the [build logs and build performance telemetry](/docs/solutions/docker-builders/tracing-and-logs).

<div className="flex flex-wrap items-center justify-center gap-8 my-8">
  <CenteredImage width={290} alt="Container Builds" src="/docs/images/github-actions/container-builds.webp" className="m-0" />

  <CenteredImage width={400} alt="Build Tracing" src="/docs/images/github-actions/buildtrace.webp" className="m-0" />
</div>

**Metrics correlation**
Namespace also collects and retains step logs, too. When hovering over a step, you can easily correlate it with the associated instance metrics.

<CenteredImage width={600} alt="Step metric correlation" src="/docs/images/github-actions/steplogsmetrics.webp" />

## Next steps

* [Debugging overview](/docs/solutions/github-actions/debugging)
* [OOM detection](/docs/solutions/github-actions/debugging/oom-detection)
