1
1
/*
2
- * CPUFreq Manager - a lightweight CPU frequency scaling monitor
3
- * and powerful CPU management tool
2
+ * This is a part of CPUFreq Manager
3
+ * Copyright (C) 2016-2019 konkor <konkor.github.io>
4
4
*
5
- * Copyright (C) 2016-2019 konkor <github.com/konkor>
6
- *
7
- * This file is part of CPUFreq Manager.
8
- *
9
- * CPUFreq Manager is free software: you can redistribute it and/or modify it
10
- * under the terms of the GNU General Public License as published by the
11
5
* Free Software Foundation, either version 3 of the License, or
12
6
* (at your option) any later version.
13
- *
14
- * CPUFreq Manager is distributed in the hope that it will be useful, but
15
- * WITHOUT ANY WARRANTY; without even the implied warranty of
16
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
- * See the GNU General Public License for more details.
18
- *
19
7
* You should have received a copy of the GNU General Public License along
20
- * with this program. If not, see <http://www.gnu.org/licenses/>.
8
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
21
9
*/
22
10
23
11
imports . gi . versions . Gtk = '3.0' ;
@@ -31,6 +19,7 @@ const Lang = imports.lang;
31
19
const Convenience = imports . convenience ;
32
20
const cpu = imports . common . HelperCPUFreq ;
33
21
const Settings = imports . common . Settings ;
22
+ const Logger = imports . common . Logger ;
34
23
const MainWindow = imports . common . ui . MainWindow ;
35
24
36
25
const DEBUG_LVL = 2 ;
@@ -54,6 +43,7 @@ var CPUFreqApplication = new Lang.Class ({
54
43
55
44
vfunc_startup : function ( ) {
56
45
this . parent ( ) ;
46
+ Logger . init ( DEBUG_LVL ) ;
57
47
this . settings = new Settings . Settings ( ) ;
58
48
cpu . init ( this . settings ) ;
59
49
} ,
@@ -82,11 +72,3 @@ var CPUFreqApplication = new Lang.Class ({
82
72
return cpu ;
83
73
}
84
74
} ) ;
85
-
86
- function debug ( msg ) {
87
- if ( msg && ( DEBUG_LVL > 1 ) ) print ( "[cpufreq][manager]" , msg ) ;
88
- }
89
-
90
- function error ( msg ) {
91
- log ( "[cpufreq][manager] (EE) " + msg ) ;
92
- }
0 commit comments