We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f02fbd6 commit 08b169cCopy full SHA for 08b169c
pc/request.cpp
@@ -708,12 +708,15 @@ bool price::send( price *prices[], const unsigned n )
708
for ( unsigned i = 0, j = 0; i < n; ++i ) {
709
price *const p = prices[ i ];
710
if ( PC_UNLIKELY( ! p->init_ && ! p->init_publish() ) ) {
711
+ PC_LOG_ERR( "failed to initialize publisher" );
712
continue;
713
}
714
if ( PC_UNLIKELY( ! p->has_publisher() ) ) {
715
+ PC_LOG_ERR( "missing publish permission" );
716
717
718
if ( PC_UNLIKELY( ! p->get_is_ready_publish() ) ) {
719
+ PC_LOG_ERR( "not ready to publish - check rpc / pyth_tx connection" );
720
721
722
manager *const mgr = p->get_manager();
0 commit comments