MaximeVH / EquivalentCircuits.jl

A julia package to either fit the parameters of a specified equivalent electrical circuit to electrochemical impedance data, or to suggest a plausible circuit configuration for a given set of measurements (either through a comparison of circuits from the literature, or through an evolutionary algorithm approach).
MIT License
22 stars 6 forks source link

Use logging instead of `println` #28

Closed ma-sadeghi closed 11 months ago

ma-sadeghi commented 11 months ago

It'd be great if all the printlns were replaced with proper logging. This is particularly useful when calling EquivalentCircuits.jl from other libraries, to avoid unwanted printing.

MaximeVH commented 11 months ago

Good point, I'll look into this

MaximeVH commented 11 months ago

Print statements have been replaced by @info logging. I will release a new package version soon including this and some other updates

ma-sadeghi commented 11 months ago

Thanks!