@@ -95,7 +95,7 @@ pub fn generic_placeholder_for_datatype(
9595
9696 TimeUnit :: Microsecond | TimeUnit :: Nanosecond => {
9797 re_log:: debug_once!(
98- "Attempted to create a placeholder for out-of-spec datatype: {datatype:? }"
98+ "Attempted to create a placeholder for out-of-spec datatype: {datatype}"
9999 ) ;
100100 array:: new_empty_array ( datatype)
101101 }
@@ -112,7 +112,7 @@ pub fn generic_placeholder_for_datatype(
112112
113113 TimeUnit :: Second | TimeUnit :: Millisecond => {
114114 re_log:: debug_once!(
115- "Attempted to create a placeholder for out-of-spec datatype: {datatype:? }"
115+ "Attempted to create a placeholder for out-of-spec datatype: {datatype}"
116116 ) ;
117117 array:: new_empty_array ( datatype)
118118 }
@@ -198,7 +198,7 @@ pub fn generic_placeholder_for_datatype(
198198 {
199199 Arc :: new ( array:: FixedSizeListArray :: from ( list_data) )
200200 } else {
201- re_log:: warn_once!( "Bug in FixedSizeListArray of {:? }" , field. data_type( ) ) ;
201+ re_log:: warn_once!( "Bug in FixedSizeListArray of {}" , field. data_type( ) ) ;
202202 array:: new_empty_array ( datatype)
203203 }
204204 }
@@ -245,7 +245,7 @@ pub fn generic_placeholder_for_datatype(
245245 | DataType :: LargeListView { .. }
246246 | DataType :: RunEndEncoded { .. } => {
247247 // TODO(emilk)
248- re_log:: debug_once!( "Unimplemented: placeholder value for: {datatype:? }" ) ;
248+ re_log:: debug_once!( "Unimplemented: placeholder value for: {datatype}" ) ;
249249 array:: new_empty_array ( datatype) // TODO(emilk)
250250 }
251251 }
0 commit comments