@@ -529,7 +529,7 @@ static void set_datum_value(Decoderbufs__DatumMessage *datum_msg, Oid typid,
529
529
datum_msg -> datum_case = DECODERBUFS__DATUM_MESSAGE__DATUM_DATUM_POINT ;
530
530
} else {
531
531
int len ;
532
- elog (WARNING , "Encountered unknown typid: %d, using bytes" , typid );
532
+ elog (DEBUG1 , "Encountered unknown typid: %d, using bytes" , typid );
533
533
output = OidOutputFunctionCall (typoutput , datum );
534
534
len = strlen (output );
535
535
size = sizeof (char ) * len ;
@@ -601,7 +601,7 @@ static void tuple_to_tuple_msg(Decoderbufs__DatumMessage **tmsg,
601
601
if (!isnull ) {
602
602
if (typisvarlena && VARATT_IS_EXTERNAL_ONDISK (origval )) {
603
603
// TODO: Is there a way we can handle this?
604
- elog (WARNING , "Not handling external on disk varlena at the moment." );
604
+ elog (DEBUG1 , "Not handling external on disk varlena at the moment." );
605
605
} else if (!typisvarlena ) {
606
606
set_datum_value (& datum_msg , attr -> atttypid , typoutput , origval );
607
607
} else {
@@ -713,7 +713,7 @@ static void pg_decode_change(LogicalDecodingContext *ctx, ReorderBufferTXN *txn,
713
713
tuple_to_tuple_msg (rmsg .old_tuple , relation ,
714
714
& change -> data .tp .oldtuple -> tuple , tupdesc );
715
715
} else {
716
- elog (WARNING , "no information to decode from DELETE because either no PK is present or REPLICA IDENTITY NOTHING or invalid " );
716
+ elog (DEBUG1 , "no information to decode from DELETE because either no PK is present or REPLICA IDENTITY NOTHING or invalid " );
717
717
}
718
718
break ;
719
719
default :
0 commit comments