@@ -95,7 +95,7 @@ pub fn generic_placeholder_for_datatype(
95
95
96
96
TimeUnit :: Microsecond | TimeUnit :: Nanosecond => {
97
97
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}"
99
99
) ;
100
100
array:: new_empty_array ( datatype)
101
101
}
@@ -112,7 +112,7 @@ pub fn generic_placeholder_for_datatype(
112
112
113
113
TimeUnit :: Second | TimeUnit :: Millisecond => {
114
114
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}"
116
116
) ;
117
117
array:: new_empty_array ( datatype)
118
118
}
@@ -198,7 +198,7 @@ pub fn generic_placeholder_for_datatype(
198
198
{
199
199
Arc :: new ( array:: FixedSizeListArray :: from ( list_data) )
200
200
} 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( ) ) ;
202
202
array:: new_empty_array ( datatype)
203
203
}
204
204
}
@@ -245,7 +245,7 @@ pub fn generic_placeholder_for_datatype(
245
245
| DataType :: LargeListView { .. }
246
246
| DataType :: RunEndEncoded { .. } => {
247
247
// TODO(emilk)
248
- re_log:: debug_once!( "Unimplemented: placeholder value for: {datatype:? }" ) ;
248
+ re_log:: debug_once!( "Unimplemented: placeholder value for: {datatype}" ) ;
249
249
array:: new_empty_array ( datatype) // TODO(emilk)
250
250
}
251
251
}
0 commit comments