Skip to content

Commit

Permalink
Remove docs for deprecated logging functions
Browse files Browse the repository at this point in the history
  • Loading branch information
c42f committed Nov 17, 2017
1 parent 94d73b8 commit 1ceb583
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 23 deletions.
20 changes: 0 additions & 20 deletions doc/src/manual/control-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -691,26 +691,6 @@ Stacktrace:
[2] verbose_fussy_sqrt(::Int64) at ./none:3
```

### Warnings and informational messages

Julia also provides other functions that write messages to the standard error I/O, but do not
throw any `Exception`s and hence do not interrupt execution:

```jldoctest
julia> info("Hi"); 1+1
INFO: Hi
2
julia> warn("Hi"); 1+1
WARNING: Hi
2
julia> error("Hi"); 1+1
ERROR: Hi
Stacktrace:
[1] error(::String) at ./error.jl:33
```

### The `try/catch` statement

The `try/catch` statement allows for `Exception`s to be tested for. For example, a customized
Expand Down
3 changes: 0 additions & 3 deletions doc/src/stdlib/io-network.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,6 @@ Base.summary
Base.print
Base.println
Base.print_with_color
Base.info
Base.warn
Base.logging
Base.Printf.@printf
Base.Printf.@sprintf
Base.sprint
Expand Down

0 comments on commit 1ceb583

Please sign in to comment.