File tree Expand file tree Collapse file tree 3 files changed +54
-76
lines changed Expand file tree Collapse file tree 3 files changed +54
-76
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 2891f5abe3c7f455d16930a35bfc8d8d623de0ff
2
+ refs/heads/master: c6605168a15d17cce57d1e23f6a3a290a8ab441d
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
5
5
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
Original file line number Diff line number Diff line change 6
6
7
7
use cast:: transmute;
8
8
9
- export console_on, console_off, log_type;
10
-
11
9
#[ nolink]
12
10
extern mod rustrt {
13
11
#[ legacy_exports] ;
@@ -17,7 +15,7 @@ extern mod rustrt {
17
15
}
18
16
19
17
/// Turns on logging to stdout globally
20
- fn console_on ( ) {
18
+ pub fn console_on ( ) {
21
19
rustrt:: rust_log_console_on ( ) ;
22
20
}
23
21
@@ -28,7 +26,7 @@ fn console_on() {
28
26
* runtime environment's logging spec, e.g. by setting
29
27
* the RUST_LOG environment variable
30
28
*/
31
- fn console_off ( ) {
29
+ pub fn console_off ( ) {
32
30
rustrt:: rust_log_console_off ( ) ;
33
31
}
34
32
You can’t perform that action at this time.
0 commit comments