Working on the JMF implementation of the media service.

cusax-fix
Emil Ivov 19 years ago
parent 325dbdf60e
commit 9e5b60b9ed

Binary file not shown.

Binary file not shown.

@ -15,7 +15,8 @@
# Note that these classes must be on the system classpath.
# By default we only configure a ConsoleHandler, which will only
# show messages at the INFO and above levels.
handlers= java.util.logging.ConsoleHandler
handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
# To also add the FileHandler, use the following line instead.
#handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
@ -26,7 +27,7 @@ handlers= java.util.logging.ConsoleHandler
# can be overriden by a facility specific level
# Note that the ConsoleHandler also has a separate level
# setting to limit messages printed to the console.
.level= INFO
.level= FINEST
############################################################
# Handler specific properties.
@ -34,10 +35,14 @@ handlers= java.util.logging.ConsoleHandler
############################################################
# default file output is in user's home directory.
java.util.logging.FileHandler.pattern = %h/java%u.log
java.util.logging.FileHandler.limit = 50000
java.util.logging.FileHandler.pattern = ./log/sip-communicator%u.log
java.util.logging.FileHandler.limit = 5000000
java.util.logging.FileHandler.count = 1
java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
java.util.logging.FileHandler.formatter = net.java.sip.communicator.util.ScLogFormatter
java.util.logging.FileHandler.level = FINEST
# Limit the message that are printed on the console to FINEST and above (all).
java.util.logging.ConsoleHandler.level = FINEST
@ -54,8 +59,15 @@ net.kano.level = INFO
# But we want everything coming from the sip-comm
net.java.sip.communicator.impl.contactlist.level = FINEST
net.java.sip.communicator.slick.level = FINEST
net.java.sip.communicator.impl.level = FINEST
net.java.sip.communicator.service.level = FINEST
net.java.sip.communicator.util.level = FINEST
net.java.sip.communicator.service.configuration.level = FINEST
net.java.sip.communicator.impl.configuration.level = FINEST
net.java.sip.communicator.impl.history.level = INFO
# For example, set the com.xyz.foo logger to only log SEVERE
# messages:
com.xyz.foo.level = SEVERE
sun.awt.level = INFO

Binary file not shown.

@ -31,6 +31,8 @@ org.osgi.framework.system.packages= org.osgi.framework; \
javax.net.ssl; \
javax.naming; \
javax.naming.directory; \
javax.sound;\
javax.sound.sampled; \
edu.stanford.ejalbert; \
edu.stanford.ejalbert.exception; \
edu.stanford.ejalbert.exceptionhandler;

@ -16,11 +16,12 @@ org.osgi.framework.system.packages= org.osgi.framework; \
javax.xml.transform.stream;\
net.java.stun4j;\
net.java.stun4j.client;\
javax.sound;\
javax.sound.sampled; \
javax.naming; \
javax.naming.directory; \
javax.net.ssl;
#
# In case you want testing to run using oscar's graphical ui then uncomment
#

@ -2,18 +2,21 @@
# environment when running automated testing.
# A list of all tests that should be run by the test target of the project.
test.list=ConfigurationServiceLick \
MediaServiceLick \
NetworkAddressManagerServiceLick \
FileAccessServiceLick \
HistoryServiceLick \
SlicklessTests \
net.java.sip.communicator.slick.runner.TEST_LIST=ConfigurationServiceLick \
MetaContactListServiceLick \
IcqProtocolProviderSlick \
SipProtocolProviderServiceLick \
MsgHistoryServiceLick \
CallHistoryServiceLick \
JabberProtocolProviderSlick
# MediaServiceLick \
# NetworkAddressManagerServiceLick \
# FileAccessServiceLick \
# HistoryServiceLick \
# SlicklessTests \
# IcqProtocolProviderSlick \
# MsgHistoryServiceLick \
# CallHistoryServiceLick \
# JabberProtocolProviderSlick
# Set the name of the meta contact list file to use during testing so that
# we do not meddle with the file we're using while running the application

Loading…
Cancel
Save