File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ function log_job_options(options::JobOptions)
188188 msg *= msg_path (" root path" , options. root; continuation_label= " " )
189189 msg *= msg_export_fields (options. fields)
190190 else
191- msg *= msg_qty (" export allowed" , options . export_allowed )
191+ msg *= msg_qty (" export allowed" , " false " )
192192 end
193193 log_it (options, msg)
194194 return nothing
Original file line number Diff line number Diff line change 387387
388388function log_material (mat:: M ; indentation:: Int = 2 ) where {M<: AbstractBondSystemMaterial }
389389 msg = msg_qty (" material type" , nameof (M); indentation)
390- msg *= msg_qty (" correction type" , correction_type (mat); indentation)
390+ if ! (correction_type (mat) <: Nothing )
391+ msg *= msg_qty (" correction type" , correction_type (mat); indentation)
392+ end
391393 for prop in fieldnames (M)
392394 msg *= log_material_property (Val (prop), mat; indentation)
393395 end
You can’t perform that action at this time.
0 commit comments