diff options
author | Delan Azabani <dazabani@igalia.com> | 2024-11-19 10:53:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-19 02:53:43 +0000 |
commit | caf2467649336abefe1deb71c669fa6f13fc8086 (patch) | |
tree | d21c1c5dd4ad75eb8a5ac54b3da59de6a8f21959 /components/layout_2020/flexbox/layout.rs | |
parent | 9a98852806272779be0b9562c7f90a57e4f7b80d (diff) | |
download | servo-caf2467649336abefe1deb71c669fa6f13fc8086.tar.gz servo-caf2467649336abefe1deb71c669fa6f13fc8086.zip |
Set all tracing spans to trace level for now (#34256)
* Clean up tracing instrumentation
Signed-off-by: Delan Azabani <dazabani@igalia.com>
* Set all tracing spans to trace level for now
Signed-off-by: Delan Azabani <dazabani@igalia.com>
---------
Signed-off-by: Delan Azabani <dazabani@igalia.com>
Diffstat (limited to 'components/layout_2020/flexbox/layout.rs')
-rw-r--r-- | components/layout_2020/flexbox/layout.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/components/layout_2020/flexbox/layout.rs b/components/layout_2020/flexbox/layout.rs index 11bfedb3255..1a35ecd39c0 100644 --- a/components/layout_2020/flexbox/layout.rs +++ b/components/layout_2020/flexbox/layout.rs @@ -395,7 +395,8 @@ impl FlexContainer { tracing::instrument( name = "FlexContainer::inline_content_sizes", skip_all, - fields(servo_profiling = true) + fields(servo_profiling = true), + level = "trace", ) )] pub fn inline_content_sizes( @@ -607,7 +608,8 @@ impl FlexContainer { tracing::instrument( name = "FlexContainer::layout", skip_all, - fields(servo_profiling = true) + fields(servo_profiling = true), + level = "trace", ) )] pub(crate) fn layout( @@ -2689,7 +2691,8 @@ impl FlexItemBox { tracing::instrument( name = "FlexContainer::layout_for_block_content_size", skip_all, - fields(servo_profiling = true) + fields(servo_profiling = true), + level = "trace", ) )] fn layout_for_block_content_size( |