@@ -132,7 +132,7 @@ class TargetReflectionContext : public ReflectionContextInterface {
132
132
const swift::reflection::TypeRef *type_ref =
133
133
GetTypeRefOrNull (dem, node, descriptor_finder);
134
134
if (!type_ref)
135
- LLDB_LOG (GetLog (LLDBLog::Types), " Could not find typeref for type: {0}" ,
135
+ LLDB_LOG (GetLog (LLDBLog::Types), " Could not find typeref for type {0}" ,
136
136
mangled_type_name);
137
137
return type_ref;
138
138
}
@@ -197,8 +197,9 @@ class TargetReflectionContext : public ReflectionContextInterface {
197
197
std::stringstream ss;
198
198
type_ref->dump (ss);
199
199
LLDB_LOG (log,
200
- " [TargetReflectionContext::getTypeInfo] Getting "
201
- " type info for typeref:\n {0}" , ss.str ());
200
+ " [TargetReflectionContext[{0:x}]::getTypeInfo] Getting type "
201
+ " info for typeref {1}" ,
202
+ provider ? provider->getId () : 0 , ss.str ());
202
203
}
203
204
204
205
auto type_info = m_reflection_ctx.getTypeInfo (type_ref, provider);
@@ -207,7 +208,7 @@ class TargetReflectionContext : public ReflectionContextInterface {
207
208
type_ref->dump (ss);
208
209
LLDB_LOG (log,
209
210
" [TargetReflectionContext::getTypeInfo] Could not get "
210
- " type info for typeref: \n {0}" ,
211
+ " type info for typeref {0}" ,
211
212
ss.str ());
212
213
}
213
214
@@ -216,8 +217,8 @@ class TargetReflectionContext : public ReflectionContextInterface {
216
217
type_info->dump (ss);
217
218
LLDB_LOG (log,
218
219
" [TargetReflectionContext::getTypeInfo] Found "
219
- " type info: \n {0}" ,
220
- ss.str ());
220
+ " type info {0}" ,
221
+ ss.str ());
221
222
}
222
223
return type_info;
223
224
}
0 commit comments