# Logging in Julia 0.6.2

**URL:** https://discourse.julialang.org/t/logging-in-julia-0-6-2/11054
**Category:** General Usage
**Created:** [May 21, 2018, 6:25pm UTC](https://discourse.julialang.org/t/logging-in-julia-0-6-2/11054 "2018-05-21T18:25:07Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![rakeshvar](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/rakeshvar/32/3613_2.png) [@rakeshvar](https://discourse.julialang.org/u/rakeshvar)
#### Post date: [May 21, 2018, 6:25pm UTC](https://discourse.julialang.org/t/logging-in-julia-0-6-2/11054/1 "2018-05-21T18:25:07Z")

</div>

This is a real noob question. I want to use Logging in Julia. I really liked the Python package `logging`. Right now I am passing down showtrace variables into functions 😞  
I see in the `latest` documentation that there is a `Logging` functionality in `stdlib`. I want to use that as it covers the scope of my usage, and is standard. In Julia 0.6.2 it is not there. Should I download the nightly? Will I run into problems of instability? Is there another package that I can use with `stable` that can later be removed without changing the logging code much?  
Thanks.

---

<div class="post-metadata">

### Author: ![mauro3](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mauro3/32/292_2.png) [@mauro3](https://discourse.julialang.org/u/mauro3)
#### Post date: [May 21, 2018, 6:55pm UTC](https://discourse.julialang.org/t/logging-in-julia-0-6-2/11054/2 "2018-05-21T18:55:14Z")

</div>

I’d just use nightly now, unless there are packages you need which don’t work on it yet (and you can’t fix them). 0.7 should be released soon, very soon, and is definitely almost feature complete; see the latest chat in [1.0 progress/status - #51 by Iagoba\_Apellaniz](https://discourse.julialang.org/t/1-0-progress-status/9762/51).

---

<div class="post-metadata">

### Author: ![stevengj](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/stevengj/32/71_2.png) [@stevengj](https://discourse.julialang.org/u/stevengj)
#### Post date: [May 21, 2018, 7:34pm UTC](https://discourse.julialang.org/t/logging-in-julia-0-6-2/11054/3 "2018-05-21T19:34:16Z")

</div>

0.7 won’t be easy for new users until packages catch up.

---

<div class="post-metadata">

### Author: ![kevbonham](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/kevbonham/32/216165_2.png) [@kevbonham](https://discourse.julialang.org/u/kevbonham)
#### Post date: [May 22, 2018, 12:33am UTC](https://discourse.julialang.org/t/logging-in-julia-0-6-2/11054/4 "2018-05-22T00:33:18Z")

</div>

I recently asked this question in slack - the response was to use the package `MicroLogging`, which is close to the new API (it was actually a sort of proof of principle for the design). It’s not totally complete, but it works pretty well for basic stuff and will get you used to the interface.

`Memento.jl` is another good choice - it has a different API, but it seems like they’re planning to keep developing it (the new API in base is built to be extensible so other packages can use it but expand on it, and that’s what Memento is doing). This means you won’t have to change much of anything when 1.0 drops
