From c838e5e3cbb87c7a7e53290b30320a0197084685 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Wed, 4 Dec 2024 14:24:31 -0300 Subject: [PATCH] Add migration notes --- docs/docs/migration_notes.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/docs/migration_notes.md b/docs/docs/migration_notes.md index bb841a9952ed..d3fde4276113 100644 --- a/docs/docs/migration_notes.md +++ b/docs/docs/migration_notes.md @@ -6,6 +6,12 @@ keywords: [sandbox, aztec, notes, migration, updating, upgrading] Aztec is in full-speed development. Literally every version breaks compatibility with the previous ones. This page attempts to target errors and difficulties you might encounter when upgrading, and how to resolve them. +## 0.66 + +### DEBUG env var is removed + +The `DEBUG` variable is no longer used. Use `LOG_LEVEL` with one of `silent`, `fatal`, `error`, `warn`, `info`, `verbose`, `debug`, or `trace`. To tweak log levels per module, add a list of module prefixes with their overridden level. For example, LOG_LEVEL="info; verbose: aztec:sequencer, aztec:archiver; debug: aztec:kv-store" sets `info` as the default log level, `verbose` for the sequencer and archiver, and `debug` for the kv-store. Module name match is done by prefix. + ## 0.65 ### [aztec.nr] Removed SharedImmutable