Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
polkadot-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
parity
Mirrored projects
polkadot-sdk
Commits
e2f570db
Commit
e2f570db
authored
1 month ago
by
Seemant Aggarwal
Browse files
Options
Downloads
Patches
Plain Diff
further effort, no success
parent
51669541
No related merge requests found
Pipeline
#515775
waiting for manual action with stages
in 11 minutes and 50 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
substrate/client/tracing/proc-macro/src/lib.rs
+12
-21
12 additions, 21 deletions
substrate/client/tracing/proc-macro/src/lib.rs
templates/parachain/node/src/service.rs
+1
-0
1 addition, 0 deletions
templates/parachain/node/src/service.rs
with
13 additions
and
21 deletions
substrate/client/tracing/proc-macro/src/lib.rs
+
12
−
21
View file @
e2f570db
...
...
@@ -117,20 +117,13 @@ pub fn prefix_logs_with(arg: TokenStream, item: TokenStream) -> TokenStream {
let
name
=
syn
::
parse_macro_input!
(
arg
as
Expr
);
// Try resolving `sc-tracing` from `polkadot-sdk` first, otherwise fallback to `sc-tracing`
let
crate_ident
=
if
let
Ok
(
FoundCrate
::
Name
(
sdk_name
))
=
crate_name
(
"polkadot-sdk"
)
{
Ident
::
new
(
&
format!
(
"{}::sc_tracing"
,
sdk_name
),
Span
::
call_site
())
}
else
if
let
Ok
(
FoundCrate
::
Itself
)
=
crate_name
(
"sc-tracing"
)
{
Ident
::
new
(
"sc_tracing"
,
Span
::
call_site
())
}
else
if
let
Ok
(
FoundCrate
::
Name
(
tracing_name
))
=
crate_name
(
"sc-tracing"
)
{
Ident
::
new
(
&
tracing_name
,
Span
::
call_site
())
}
else
{
return
Error
::
new
(
Span
::
call_site
(),
"Could not find `sc-tracing` or `polkadot-sdk` in dependencies"
,
)
.to_compile_error
()
.into
();
let
crate_name
=
match
crate_name
(
"polkadot-sdk"
)
{
Ok
(
FoundCrate
::
Name
(
sdk_name
))
=>
Ident
::
new
(
sdk_name
.as_str
(),
Span
::
call_site
()),
_
=>
match
crate_name
(
"sc-tracing"
)
{
Ok
(
FoundCrate
::
Itself
)
=>
Ident
::
new
(
"sc_tracing"
,
Span
::
call_site
()),
Ok
(
FoundCrate
::
Name
(
tracing_name
))
=>
Ident
::
new
(
tracing_name
.as_str
(),
Span
::
call_site
()),
Err
(
e
)
=>
return
Error
::
new
(
Span
::
call_site
(),
e
)
.to_compile_error
()
.into
(),
},
};
let
ItemFn
{
attrs
,
vis
,
sig
,
block
}
=
item_fn
;
...
...
@@ -138,16 +131,14 @@ pub fn prefix_logs_with(arg: TokenStream, item: TokenStream) -> TokenStream {
(
quote!
{
#
(
#
attrs
)
*
#
vis
#
sig
{
let
span
=
#
crate_
ident
::
tracing
::
info_span!
(
#
crate_
ident
::
logging
::
PREFIX_LOG_SPAN
,
let
span
=
#
crate_
name
::
tracing
::
info_span!
(
#
crate_
name
::
logging
::
PREFIX_LOG_SPAN
,
name
=
#
name
,
);
let
_guard
=
span
.enter
();
// Keep this variable alive throughout the function
let
result
=
(||
#
block
)();
// Execute the function body in a closure
let
_enter
=
span
.enter
();
result
#
block
}
})
.into
()
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
templates/parachain/node/src/service.rs
+
1
−
0
View file @
e2f570db
...
...
@@ -31,6 +31,7 @@ use cumulus_relay_chain_interface::{OverseerHandle, RelayChainInterface};
// Substrate Imports
use
frame_benchmarking_cli
::
SUBSTRATE_REFERENCE_HARDWARE
;
use
polkadot_sdk
::
sc_tracing
::
logging
;
use
prometheus_endpoint
::
Registry
;
use
sc_client_api
::
Backend
;
use
sc_consensus
::
ImportQueue
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment