From 89a0d3af1e57da0db1e8bbe35221460f631d4bab Mon Sep 17 00:00:00 2001 From: Ruihang Xia Date: Tue, 12 Dec 2023 16:01:18 +0800 Subject: [PATCH] feat: set default debug level of release and dev profiles to 1 (#2916) Signed-off-by: Ruihang Xia --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b24f725332be..06f8475f6a3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -188,8 +188,11 @@ table = { path = "src/table" } git = "https://github.com/GreptimeTeam/greptime-meter.git" rev = "abbd357c1e193cd270ea65ee7652334a150b628f" +[profile.dev] +debug = 1 + [profile.release] -debug = true +debug = 1 [profile.nightly] inherits = "release"