Examples of Stacktrace


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

        ProjectNegotiation process) {
        if (this.processes.remove(process.getPeer()) == null) {
            log.error(
                "An internal error occurred:" + " No ProjectNegotiation with "
                    + Utils.prefix(process.getPeer()) + " could be found",
                new StackTrace());
        }
    }
View Full Code Here

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

        if (oldProcess != null) {
            log.error(
                "An internal error occurred:"
                    + " An existing invititation process with "
                    + Utils.prefix(oldProcess.getPeer())
                    + " was replace by a new one", new StackTrace());
        }
    }
View Full Code Here

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

        if (this.processes.remove(process.getPeer()) == null) {
            log.error(
                "An internal error occurred:"
                    + " No invititation process with "
                    + Utils.prefix(process.getPeer()) + " could be found",
                new StackTrace());
        }
    }
View Full Code Here

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

        isInitialized = initialized;
    }

    protected static void checkInitialized() {
        if (plugin == null || !isInitialized()) {
            LogLog.error("Saros not initialized", new StackTrace()); //$NON-NLS-1$
            throw new IllegalStateException();
        }
    }
View Full Code Here

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

                    remoteVersionInfo.version, peer.getBase());
                break;
            default:
                log.warn(
                    "Warning message requested when no warning is in place!", //$NON-NLS-1$
                    new StackTrace());
                // No warning to display
                message = MessageFormat.format(
                    Messages.InvitationWizard_invite_error, peer);
                break;
            }
View Full Code Here

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

        log.trace("EditorPool.add (" + path.toString() + ") invoked");

        if (getEditors(path).contains(editorPart)) {
            log.error("EditorPart was added twice to the EditorPool: "
                + editorPart.getTitle(), new StackTrace());
            return;
        }

        ITextViewer viewer = EditorAPI.getViewer(editorPart);
        if (viewer == null) {
View Full Code Here

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

            return null;
        }

        if (!sarosSession.isShared(file.getProject())) {
            log.warn("File is from incorrect project: " + file.getProject()
                + " should be " + sarosSession + ": " + file, new StackTrace());
        }

        IPath path = file.getProjectRelativePath();
        if (path == null) {
            log.warn("Could not find path for editor " + editorPart.getTitle());
View Full Code Here

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

            return null;
        }

        if (!sarosSession.isShared(file.getProject())) {
            log.warn("File is from incorrect project: " + file.getProject()
                + " should be " + sarosSession + ": " + file, new StackTrace());
        }

        IPath path = file.getProjectRelativePath();
        if (path == null) {
            log.warn("Could not find path for editor " + editorPart.getTitle());
View Full Code Here

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

        assert !connectedUserWithWriteAccessFiles.contains(path);

        IFile file = path.getFile();
        if (!file.exists()) {
            log.error("Attempting to connect to file which"
                + " is not available locally: " + path, new StackTrace());
            return;
        }

        FileEditorInput input = new FileEditorInput(file);
        IDocumentProvider provider = EditorManager.getDocumentProvider(input);
View Full Code Here

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

            return false;
        if (getClass() != obj.getClass()) {
            if (obj.getClass() == String.class || obj.getClass() == JID.class)
                log.warn(
                    Messages.User_comparing
                        + obj.getClass(), new StackTrace());
            return false;
        }
        User other = (User) obj;
        if (jid == null) {
            if (other.jid != null)
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.