|
1 ############################################################ |
|
2 # |
|
3 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 # All rights reserved. |
|
5 # This component and the accompanying materials are made available |
|
6 # under the terms of "Eclipse Public License v1.0" |
|
7 # which accompanies this distribution, and is available |
|
8 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 # |
|
10 # Initial Contributors: |
|
11 # Nokia Corporation - initial contribution. |
|
12 # |
|
13 # Contributors: |
|
14 # |
|
15 # Description: |
|
16 # |
|
17 # |
|
18 ############################################################ |
|
19 # HTI API Logging Configuration File |
|
20 ############################################################ |
|
21 |
|
22 ############################################################ |
|
23 # Global properties |
|
24 ############################################################ |
|
25 |
|
26 # "handlers" specifies a comma separated list of log Handler |
|
27 # classes. These handlers will be installed during VM startup. |
|
28 # Note that these classes must be on the system classpath. |
|
29 handlers= java.util.logging.ConsoleHandler |
|
30 #handlers= java.util.logging.FileHandler |
|
31 #handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler |
|
32 |
|
33 # Default global logging level. |
|
34 # This specifies which kinds of events are logged across |
|
35 # all loggers. For any given facility this global level |
|
36 # can be overriden by a facility specific level |
|
37 .level= INFO |
|
38 |
|
39 ############################################################ |
|
40 # Handler specific properties. |
|
41 # Describes specific configuration info for Handlers. |
|
42 ############################################################ |
|
43 |
|
44 # FileHandler |
|
45 java.util.logging.FileHandler.level = ALL |
|
46 java.util.logging.FileHandler.pattern = ./htiapi%u.%g.log |
|
47 java.util.logging.FileHandler.limit = 1048576 |
|
48 java.util.logging.FileHandler.count = 10 |
|
49 java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter |
|
50 |
|
51 # ConsoleHandler |
|
52 java.util.logging.ConsoleHandler.level = ALL |
|
53 java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter |
|
54 |
|
55 ############################################################ |
|
56 # Detailed logger levels. |
|
57 # Describes specific level info for loggers. |
|
58 ############################################################ |
|
59 |
|
60 com.nokia.HTI.BaseService.level = ALL |
|
61 com.nokia.HTI.ApplicationControlService.ApplicationControlService.level = ALL |
|
62 com.nokia.HTI.FTPService.FTPService.level = ALL |
|
63 com.nokia.HTI.KeyEventService.KeyEventService.level = ALL |
|
64 com.nokia.HTI.ScreenCapturingService.ScreenCapturingService.level = ALL |
|
65 com.nokia.HTI.STIFTestFrameworkService.STIFTestFrameworkService.level = ALL |