controlpanelui/src/tonefetcher/src/main.cpp
changeset 22 a5692c68d772
parent 19 36aa4756ee82
child 29 313976a11e23
equal deleted inserted replaced
21:2883a5458389 22:a5692c68d772
    17  */
    17  */
    18 
    18 
    19 #include "tonefetcher.h"
    19 #include "tonefetcher.h"
    20 #include "tonefetchermainwindow.h"
    20 #include "tonefetchermainwindow.h"
    21 #include <hbapplication.h>
    21 #include <hbapplication.h>
       
    22 #include <tonefetcherlogger.h>
    22 
    23 
    23 int main(int argc, char *argv[])
    24 int main(int argc, char *argv[])
    24 {
    25 {
    25     HbApplication a(argc, argv);
    26     HbApplication a(argc, argv);
       
    27     
       
    28     
       
    29     Logger::instance(TONEFETCHER_LOGGER_NAME)->configure(
       
    30             TF_LOGGER_CONFIG_PATH,QSettings::IniFormat);
       
    31 
       
    32     TF_LOG("Entering tonefetcher.exe...");
    26     ToneFetcherMainWindow w;   
    33     ToneFetcherMainWindow w;   
    27     w.show();
    34     w.show();
    28     return a.exec();
    35     return a.exec();
    29 }
    36 }