Examples of Stacktrace


Examples of de.fu_berlin.inf.dpp.util.StackTrace

                toSendViaNetwork.add(user);
            }
        }

        if (toSendViaNetwork.isEmpty()) {
            log.trace(null, new StackTrace());
            return;
        }
        this.outgoingQueue.add(new DataObjectQueueItem(toSendViaNetwork,
            activityDataObject));
    }
View Full Code Here

Examples of de.fu_berlin.inf.dpp.util.StackTrace

        descData = Utils.deflate(transferDescription.toByteArray(),
            progress.newChild(1));
        if (descData == null) {
            log.error(
                "Failed to deflate bytes of a Base64 encoded TransferDescription String:"
                    + transferDescription.toBase64(), new StackTrace());
            throw new IOException();
        }

        try {
            int countDescription = Math.max(0, descData.length / CHUNKSIZE) + 1;
View Full Code Here

Examples of de.fu_berlin.inf.dpp.util.StackTrace

     */
    public void addData(AbstractStatisticCollector collector,
        SessionStatistic data) {
        if (activeCollectors == null || activeCollectors.isEmpty()) {
            log.warn("There are no active SessionCollectors left,"
                + " but we were called from one anyhow.", new StackTrace());
        }

        // fetch the data from the collector and remove him from the active list
        statistic.addAll(data);
        if (activeCollectors != null) {
View Full Code Here

Examples of de.fu_berlin.inf.dpp.util.StackTrace

        try {
            IDocument doc = provider.getDocument(input);
            if (doc == null) {
                log.error("Could not connect document provider for file: "
                    + file.toString(), new StackTrace());
                // TODO Trigger a consistency recovery
                return;
            }

            // Check if the replaced text is really there.
View Full Code Here

Examples of de.fu_berlin.inf.dpp.util.StackTrace

        log.trace("EditorManager.saveText (" + file.getName() + ") invoked");

        if (!file.exists()) {
            log.warn("File not found for saving: " + path.toString(),
                new StackTrace());
            return;
        }

        editorListenerDispatch.userWithWriteAccessEditorSaved(path, true);
View Full Code Here

Examples of de.fu_berlin.inf.dpp.util.StackTrace

        try {
            IDocument doc = provider.getDocument(input);
            if (doc == null) {
                log.error("Could not connect to a document provider on file '"
                    + file.toString() + "':", new StackTrace());
                return;
            }

            for (ITextOperation textOp : textOps) {
                try {
View Full Code Here

Examples of de.fu_berlin.inf.dpp.util.StackTrace

     *          querying the server.
     */
    protected boolean isFeatureSupported(JID recipient, String feature) {

        if (recipient.getResource().equals(""))
            log.warn("Resource missing: ", new StackTrace());

        DiscoverInfoWrapper info;

        // add dummy
        synchronized (cache) {
View Full Code Here

Examples of de.fu_berlin.inf.dpp.util.StackTrace

    protected DiscoverInfo querySupport(final JID recipient) {

        if (recipient.getResource().equals(""))
            log.warn("Service discovery is likely to "
                + "fail because resource is missing: " + recipient.toString(),
                new StackTrace());

        if (!sarosNet.isConnected())
            throw new IllegalStateException("Not Connected");

        ServiceDiscoveryManager sdm = ServiceDiscoveryManager
View Full Code Here

Examples of de.fu_berlin.inf.dpp.util.StackTrace

     */
    public boolean performCheck(SPath path) {

        if (sarosSession == null) {
            log.warn("Session already ended. Cannot perform consistency check",
                new StackTrace());
            return false;
        }

        ChecksumActivity checksumActivityDataObject = latestChecksums.get(path);
        if (checksumActivityDataObject != null) {
View Full Code Here

Examples of de.fu_berlin.inf.dpp.util.StackTrace

        // TODO this method is currently not used. Probably they interfere with
        // Jupiter
        if (true) {
            log.error("Unexpected Call to Request for Activity,"
                + " which is currently disabled:", new StackTrace());
            return;
        }

        for (Entry<JID, Integer> entry : expectedSequenceNumbers.entrySet()) {
            JID recipient = entry.getKey();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.