!SESSION 2015-09-12 13:13:49.322 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-12 13:14:14.620 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-12 13:14:14.624 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-12 13:14:46.344 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-12 13:14:46.346 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-12 13:14:46.348 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-12 13:14:46.349 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-12 13:14:46.368 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-12 13:14:46.369 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.js.core 4 0 2015-09-12 13:15:03.574 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.aptana.git.core 4 0 2015-09-12 13:15:25.555 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Errors occurred while grabbing changed file listings !ENTRY com.aptana.git.core 4 1 2015-09-12 13:15:32.074 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-12 13:15:32.074 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-12 13:15:32.074 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-12 13:15:32.074 !MESSAGE Failed to acquire lock for git repository. !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-12 13:27:56.227 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 org.eclipse.e4.core.di.InjectionException: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:62) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.disposed(InjectorImpl.java:390) at org.eclipse.e4.core.internal.di.Requestor.disposed(Requestor.java:143) at org.eclipse.e4.core.internal.contexts.ContextObjectSupplier$ContextInjectionListener.update(ContextObjectSupplier.java:76) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update(TrackableComputationExt.java:107) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.handleInvalid(TrackableComputationExt.java:70) at org.eclipse.e4.core.internal.contexts.EclipseContext.dispose(EclipseContext.java:175) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.clearContext(PartRenderingEngine.java:974) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:954) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:862) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:857) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:841) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1937) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1560) at org.eclipse.ui.internal.WorkbenchWindow.access$15(WorkbenchWindow.java:1527) at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1592) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1589) at org.eclipse.ui.internal.Workbench$14.run(Workbench.java:1155) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1137) at org.eclipse.ui.internal.Workbench.access$21(Workbench.java:1079) at org.eclipse.ui.internal.Workbench$19.run(Workbench.java:1410) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1407) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1380) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1556) at org.eclipse.ui.internal.WorkbenchWindow.access$15(WorkbenchWindow.java:1527) at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1592) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1589) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1603) at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:521) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:563) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Shell.closeWidget(Shell.java:612) at org.eclipse.swt.widgets.Shell.windowShouldClose(Shell.java:2359) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5636) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2105) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2329) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5702) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:5139) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5288) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3666) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:573) at org.eclipse.swt.widgets.Shell.getSize(Shell.java:1182) at org.eclipse.ui.internal.quickaccess.SearchField.storeDialog(SearchField.java:580) at org.eclipse.ui.internal.quickaccess.SearchField.dispose(SearchField.java:557) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) ... 76 more !ENTRY org.eclipse.e4.ui.workbench 4 0 2015-09-12 13:27:56.230 !MESSAGE Exception occurred while unrendering: org.eclipse.e4.ui.model.application.ui.basic.impl.TrimmedWindowImpl@292cdf90 (elementId: IDEWindow, tags: [topLevel], contributorURI: platform:/plugin/org.eclipse.ui.workbench) (widget: null, renderer: null, toBeRendered: true, onTop: false, visible: true, containerData: null, accessibilityPhrase: null) (label: %trimmedwindow.label.eclipseSDK, iconURI: null, tooltip: null, context: null, variables: [], x: 77, y: 27, width: 1200, height: 877) !STACK 0 org.eclipse.e4.core.di.InjectionException: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:62) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.disposed(InjectorImpl.java:390) at org.eclipse.e4.core.internal.di.Requestor.disposed(Requestor.java:143) at org.eclipse.e4.core.internal.contexts.ContextObjectSupplier$ContextInjectionListener.update(ContextObjectSupplier.java:76) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update(TrackableComputationExt.java:107) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.handleInvalid(TrackableComputationExt.java:70) at org.eclipse.e4.core.internal.contexts.EclipseContext.dispose(EclipseContext.java:175) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.clearContext(PartRenderingEngine.java:974) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:954) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:862) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:857) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:841) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1937) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1560) at org.eclipse.ui.internal.WorkbenchWindow.access$15(WorkbenchWindow.java:1527) at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1592) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1589) at org.eclipse.ui.internal.Workbench$14.run(Workbench.java:1155) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1137) at org.eclipse.ui.internal.Workbench.access$21(Workbench.java:1079) at org.eclipse.ui.internal.Workbench$19.run(Workbench.java:1410) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1407) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1380) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1556) at org.eclipse.ui.internal.WorkbenchWindow.access$15(WorkbenchWindow.java:1527) at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1592) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1589) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1603) at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:521) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:563) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Shell.closeWidget(Shell.java:612) at org.eclipse.swt.widgets.Shell.windowShouldClose(Shell.java:2359) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5636) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2105) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2329) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5702) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:5139) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5288) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3666) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:573) at org.eclipse.swt.widgets.Shell.getSize(Shell.java:1182) at org.eclipse.ui.internal.quickaccess.SearchField.storeDialog(SearchField.java:580) at org.eclipse.ui.internal.quickaccess.SearchField.dispose(SearchField.java:557) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) ... 76 more !ENTRY org.eclipse.core.jobs 2 2 2015-09-12 13:27:58.963 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-12 13:29:44.191 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-12 13:30:10.733 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-12 13:30:10.737 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-12 13:30:38.265 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-12 13:30:38.267 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-12 13:30:38.269 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-12 13:30:38.271 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-12 13:30:38.272 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-12 13:30:38.274 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 1 2015-09-12 13:32:33.249 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-12 13:32:33.249 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-12 13:32:33.249 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-12 13:32:33.250 !MESSAGE Failed to acquire lock for git repository. !ENTRY org.eclipse.ui.workbench 4 2 2015-09-12 13:54:55.656 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-09-12 13:54:55.659 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-09-12 13:54:55.659 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-12 13:55:00.233 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-12 15:58:23.572 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-12 15:58:47.267 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-12 15:58:47.274 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-12 15:59:12.601 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-12 15:59:12.624 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-12 15:59:12.628 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-12 15:59:12.629 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-12 15:59:12.631 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-12 15:59:12.632 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-12 17:35:52.967 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-12 17:35:52.969 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-12 17:39:13.603 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-12 17:39:13.604 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-12 17:53:28.104 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-12 17:53:28.105 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-12 18:02:27.166 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-12 18:02:27.167 !MESSAGE Terminate failed !ENTRY org.eclipse.ui 4 0 2015-09-12 18:03:49.110 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at org.eclipse.swt.graphics.TextLayout.getStyles(TextLayout.java:1489) at org.eclipse.swt.custom.StyledTextRenderer.drawLine(StyledTextRenderer.java:434) at org.eclipse.swt.custom.StyledText.handlePaint(StyledText.java:6133) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:5669) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Control.drawWidget(Control.java:1244) at org.eclipse.swt.widgets.Canvas.drawWidget(Canvas.java:166) at org.eclipse.swt.widgets.Widget.drawRect(Widget.java:749) at org.eclipse.swt.widgets.Canvas.drawRect(Canvas.java:161) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5616) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:5000) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5378) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:94) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) !ENTRY org.eclipse.core.jobs 2 2 2015-09-12 18:03:55.843 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-12 18:04:07.468 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-12 18:04:34.406 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-12 18:04:34.410 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-12 18:07:04.172 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-12 18:07:04.173 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-12 18:31:46.775 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-12 18:31:46.776 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-12 18:42:43.303 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-12 18:42:43.304 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-12 18:44:24.843 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-12 18:44:24.847 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-12 18:45:57.511 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-12 18:45:57.512 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-12 18:48:34.510 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-13 00:12:25.200 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 00:13:24.065 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 00:13:24.071 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 00:36:16.279 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 00:36:16.280 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 00:37:58.735 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 00:37:58.736 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 00:44:48.310 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 00:44:48.311 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 00:48:36.423 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 00:48:36.423 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 00:51:44.637 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 00:51:44.638 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 00:56:16.797 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 00:56:16.797 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 01:13:26.016 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 01:13:26.016 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 01:14:37.825 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 01:14:37.826 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 01:16:33.318 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 01:16:33.319 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 01:18:02.439 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 01:18:02.440 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 01:25:20.129 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 01:25:20.130 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 01:30:24.341 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 01:30:24.342 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 01:34:51.253 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 01:34:51.253 !MESSAGE Terminate failed !ENTRY org.eclipse.debug.core 4 125 2015-09-13 01:43:16.466 !MESSAGE Error logged from Debug Core: !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at org.eclipse.debug.internal.core.LaunchManager.shutdown(LaunchManager.java:2380) at org.eclipse.debug.core.DebugPlugin.stop(DebugPlugin.java:650) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820) at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950) at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542) at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160) at java.lang.Thread.run(Thread.java:744) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 01:43:16.466 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-13 01:43:16.816 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-09-13 01:43:16.816 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.debug.internal.ui.DebugUIPlugin$8 !SESSION 2015-09-13 10:28:42.097 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 10:29:08.285 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 10:29:08.287 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-13 10:29:34.533 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-13 10:29:34.563 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-13 10:29:34.565 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-13 10:29:34.567 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-13 10:29:34.569 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-13 10:29:34.570 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-13 10:35:39.266 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 10:43:39.437 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 10:43:39.441 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-13 10:44:04.595 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-13 10:44:04.616 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-13 10:44:04.620 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-13 10:44:04.621 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-13 10:44:04.623 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-13 10:44:04.624 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-13 10:49:48.985 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-13 10:49:57.841 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-13 10:50:05.626 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 10:50:05.626 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 10:50:05.628 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 10:50:05.629 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 10:50:05.988 !MESSAGE (Build 4.1.1.1436893481) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 10:50:05.991 !MESSAGE (Build 4.1.1.1436893481) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-13 10:50:38.264 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-13 10:50:38.286 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-13 10:50:38.289 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-13 10:50:38.291 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-13 10:50:38.293 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-13 10:50:38.294 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 1 2015-09-13 10:51:00.498 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 10:51:00.498 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 10:51:00.501 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 10:51:00.501 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.git.core 4 1 2015-09-13 10:52:21.483 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 10:52:21.483 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 10:52:21.485 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 10:52:21.485 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.git.core 4 1 2015-09-13 10:59:42.817 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 10:59:42.817 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 10:59:42.820 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 10:59:42.820 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 11:02:11.774 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 11:02:11.775 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 11:04:19.064 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 11:04:19.064 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 11:27:27.527 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 11:27:27.528 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 11:28:40.753 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 11:28:40.754 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 11:30:09.246 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 11:30:09.247 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 11:32:27.137 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 11:32:27.140 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 11:36:01.196 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 11:36:01.197 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 12:10:30.944 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 12:10:30.945 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 12:12:31.735 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 12:12:31.736 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-13 12:14:47.968 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-13 13:06:27.887 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-09-13 13:06:37.766 !MESSAGE (Build 4.1.1.1436893481) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:294) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-13 13:06:37.770 !MESSAGE (Build 4.1.1.1436893481) [ERROR] Failed to check login status. Likely not logged in. !SESSION 2015-09-13 13:14:12.252 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-09-13 13:14:25.471 !MESSAGE (Build 4.1.1.1436893481) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:294) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-13 13:14:25.474 !MESSAGE (Build 4.1.1.1436893481) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 13:16:23.689 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 13:16:23.690 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-13 13:16:56.819 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-13 13:16:56.839 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-13 13:16:56.843 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-13 13:16:56.844 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-13 13:16:56.846 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-13 13:16:56.847 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 1 2015-09-13 13:31:21.563 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-13 13:31:21.564 !MESSAGE GC overhead limit exceeded !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at org.eclipse.core.runtime.Path.computeSegments(Path.java:488) at org.eclipse.core.runtime.Path.initialize(Path.java:602) at org.eclipse.core.runtime.Path.fromPortableString(Path.java:106) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.readOtherFiles(GitIndex.java:1056) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1033) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 14:42:33.817 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 14:42:33.817 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 14:43:19.664 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 14:43:19.665 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 14:46:11.819 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 14:46:11.820 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 14:47:53.101 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 14:47:53.102 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 14:54:04.015 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 14:54:04.016 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 14:55:59.787 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 14:55:59.787 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 15:00:14.939 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 15:00:14.940 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 15:01:34.360 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 15:01:34.361 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 15:06:14.435 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 15:06:14.435 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 15:07:27.340 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 15:07:27.341 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 15:08:25.423 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 15:08:25.423 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 15:14:13.702 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 15:14:13.703 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 15:15:55.668 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 15:15:55.668 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 15:17:30.804 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 15:17:30.805 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 15:25:48.828 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 15:25:48.829 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 15:41:48.184 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 15:41:48.185 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 4 2 2015-09-13 15:45:17.824 !MESSAGE An internal error occurred during: "Searching for local changes". !STACK 0 java.lang.OutOfMemoryError: Java heap space at org.eclipse.core.internal.filesystem.local.unix.UnixFileNatives.tounicode(Native Method) at org.eclipse.core.internal.filesystem.local.unix.UnixFileNatives.fileNameToBytes(UnixFileNatives.java:170) at org.eclipse.core.internal.filesystem.local.unix.UnixFileNatives.fetchFileInfo(UnixFileNatives.java:72) at org.eclipse.core.internal.filesystem.local.unix.UnixFileHandler.fetchFileInfo(UnixFileHandler.java:27) at org.eclipse.core.internal.filesystem.local.LocalFileNativesManager.fetchFileInfo(LocalFileNativesManager.java:77) at org.eclipse.core.internal.filesystem.local.LocalFile.fetchInfo(LocalFile.java:150) at org.eclipse.core.filesystem.provider.FileStore.fetchInfo(FileStore.java:280) at org.eclipse.core.filesystem.provider.FileStore.childInfos(FileStore.java:109) at org.eclipse.core.internal.localstore.UnifiedTree.getLocalList(UnifiedTree.java:346) at org.eclipse.core.internal.localstore.UnifiedTree.addChildren(UnifiedTree.java:138) at org.eclipse.core.internal.localstore.UnifiedTree.addNodeChildrenToQueue(UnifiedTree.java:244) at org.eclipse.core.internal.localstore.UnifiedTree.accept(UnifiedTree.java:110) at org.eclipse.core.internal.localstore.FileSystemResourceManager.isSynchronized(FileSystemResourceManager.java:716) at org.eclipse.core.internal.resources.Resource.isSynchronized(Resource.java:1543) at org.eclipse.core.internal.refresh.PollingMonitor.poll(PollingMonitor.java:173) at org.eclipse.core.internal.refresh.PollingMonitor.run(PollingMonitor.java:126) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 0 2015-09-13 15:45:33.994 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.OutOfMemoryError: Java heap space !ENTRY org.eclipse.ui 4 0 2015-09-13 15:45:33.996 !MESSAGE Error occurred during status handling !STACK 0 java.lang.OutOfMemoryError: Java heap space !ENTRY org.eclipse.core.jobs 4 2 2015-09-13 15:45:57.754 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.OutOfMemoryError: Java heap space !ENTRY org.eclipse.core.jobs 4 2 2015-09-13 15:45:57.759 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: Java heap space !ENTRY org.eclipse.debug.core 4 125 2015-09-13 15:46:04.916 !MESSAGE Error logged from Debug Core: !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at org.eclipse.debug.internal.core.LaunchManager.shutdown(LaunchManager.java:2380) at org.eclipse.debug.core.DebugPlugin.stop(DebugPlugin.java:650) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820) at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950) at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542) at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160) at java.lang.Thread.run(Thread.java:744) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 15:46:04.916 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-13 15:46:05.270 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-13 15:46:12.492 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 15:46:40.977 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 15:46:40.981 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-13 15:47:05.633 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-13 15:47:05.657 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-13 15:47:05.660 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-13 15:47:05.662 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-13 15:47:05.663 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-13 15:47:05.666 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 15:57:34.577 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 15:57:34.579 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:00:14.561 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:00:14.562 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:18:33.944 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:18:33.945 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:27:34.942 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:27:34.943 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:34:41.870 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:34:41.870 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:35:53.643 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:35:53.644 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:37:08.561 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:37:08.562 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:38:22.383 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:38:22.384 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:39:33.880 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:39:33.881 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:41:10.442 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:41:10.442 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:42:28.142 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:42:28.143 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:45:06.653 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:45:06.654 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:49:09.618 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:49:09.619 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:56:04.410 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:56:04.411 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 16:59:00.052 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 16:59:00.053 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 17:01:02.455 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 17:01:02.455 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 17:03:33.720 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 17:03:33.721 !MESSAGE Terminate failed !SESSION 2015-09-13 17:07:15.580 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-13 17:07:24.947 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 17:07:40.482 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 17:07:40.486 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-13 17:08:05.504 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-13 17:08:05.521 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-13 17:08:05.524 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-13 17:08:05.526 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-13 17:08:05.528 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-13 17:08:05.529 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 17:16:03.713 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 17:16:03.714 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 17:18:58.125 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 17:18:58.125 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 17:20:54.322 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 17:20:54.323 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 17:22:03.632 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 17:22:03.633 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 17:25:55.071 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 17:25:55.072 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 17:30:07.242 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 17:30:07.243 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 17:34:12.403 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 17:34:12.405 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 17:36:49.034 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 17:36:49.035 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 17:43:09.196 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 17:43:09.197 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 18:04:02.080 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 18:04:02.081 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 18:07:24.851 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 18:07:24.852 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 18:09:17.731 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 18:09:17.732 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 18:10:52.054 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 18:10:52.054 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.android.core 4 0 2015-09-13 19:06:23.663 !MESSAGE (Build 4.1.1.201507141126) [ERROR] { "android": { "linux64bit": null, "sdk": { "path": "/Users/James/Library/android-sdk-macosx", "executables": { "adb": "/Users/James/Library/android-sdk-macosx/platform-tools/adb", "android": "/Users/James/Library/android-sdk-macosx/tools/android", "emulator": "/Users/James/Library/android-sdk-macosx/tools/emulator", "zipalign": "/Users/James/Library/android-sdk-macosx/build-tools/19.1.0/zipalign", "mksdcard": "/Users/James/Library/android-sdk-macosx/tools/mksdcard", "aapt": "/Users/James/Library/android-sdk-macosx/build-tools/19.1.0/aapt", "dx": "/Users/James/Library/android-sdk-macosx/build-tools/19.1.0/dx", "aidl": "/Users/James/Library/android-sdk-macosx/build-tools/19.1.0/aidl" }, "dx": "/Users/James/Library/android-sdk-macosx/build-tools/19.1.0/lib/dx.jar", "proguard": "/Users/James/Library/android-sdk-macosx/tools/proguard/lib/proguard.jar", "tools": { "path": "/Users/James/Library/android-sdk-macosx/tools", "supported": true, "version": "22.3" }, "platformTools": { "path": "/Users/James/Library/android-sdk-macosx/platform-tools", "supported": true, "version": "19.0.1" }, "buildTools": { "path": "/Users/James/Library/android-sdk-macosx/build-tools/19.1.0", "supported": true, "version": "19.1.0", "tooNew": true, "maxSupported": "<22.x" } }, "ndk": null, "home": "/Users/James/.android", "detectVersion": "2.0", "vendorDependencies": { "android sdk": ">=21 <=22", "android build tools": ">=17 <22.x", "android platform tools": ">=17 <=22.x", "android tools": "<=24.1.2", "android ndk": ">=r8e <=r9", "node": ">=0.10.0 <=0.12.x", "java": "<=1.8.x" }, "targets": { "1": { "id": "android-10", "abis": [ "armeabi" ], "skins": [ "HVGA", "QVGA", "WQVGA400", "WQVGA432", "WVGA800", "WVGA854" ], "name": "Android 2.3.3", "type": "platform", "api-level": 10, "revision": 2, "path": "/Users/James/Library/android-sdk-macosx/platforms/android-10", "sdk": 10, "version": "2.3.3", "androidJar": "/Users/James/Library/android-sdk-macosx/platforms/android-10/android.jar", "supported": false, "aidl": "/Users/James/Library/android-sdk-macosx/platforms/android-10/framework.aidl" }, "2": { "id": "Google Inc.:Google APIs:10", "abis": [ "armeabi" ], "skins": [ "WVGA854", "WQVGA400", "HVGA", "WQVGA432", "WVGA800", "QVGA" ], "name": "Google APIs", "type": "add-on", "vendor": "Google Inc.", "revision": 2, "description": "Android + Google APIs", "based-on": { "android-version": "2.3.3", !STACK 0 Unexpected token END OF FILE at position 2732. at org.json.simple.parser.JSONParser.parse(JSONParser.java:258) at org.json.simple.parser.JSONParser.parse(JSONParser.java:82) at org.json.simple.parser.JSONParser.parse(JSONParser.java:76) at com.appcelerator.titanium.android.core.AndroidSDKLocator.loadTiInfo(AndroidSDKLocator.java:848) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:226) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-13 19:06:25.425 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at org.eclipse.core.runtime.Path.removeLastSegments(Path.java:834) at com.aptana.git.core.model.GitRepository.workingDirectory(GitRepository.java:632) at com.aptana.git.core.model.GitIndex.workingDirectory(GitIndex.java:771) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-13 19:06:29.523 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-13 19:06:37.280 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-09-13 19:09:10.425 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-13 19:09:10.425 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-13 19:09:10.425 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-13 19:09:10.426 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 19:09:13.775 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 19:09:13.776 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-13 19:09:45.773 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-13 19:09:45.799 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-13 19:09:45.802 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-13 19:09:45.804 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-13 19:09:45.805 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-13 19:09:45.807 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 4 2 2015-09-13 19:17:49.068 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: Java heap space at org.eclipse.core.runtime.Path.append(Path.java:242) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-13 19:17:53.338 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-13 19:24:38.065 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 19:25:04.767 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 19:25:04.772 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-13 19:25:29.391 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-13 19:25:29.413 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-13 19:25:29.417 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-13 19:25:29.419 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-13 19:25:29.420 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-13 19:25:29.422 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 19:27:23.283 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 19:27:23.284 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 19:35:43.963 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 19:35:43.964 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 19:40:20.037 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 19:40:20.038 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 19:41:50.935 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 19:41:50.936 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 19:49:02.070 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 19:49:02.070 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 19:58:22.625 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 19:58:22.626 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:03:53.040 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:03:53.041 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:05:44.280 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:05:44.281 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:07:27.830 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:07:27.831 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:11:21.139 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:11:21.140 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:12:51.663 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:12:51.664 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:17:50.490 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:17:50.491 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:20:58.621 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:20:58.622 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:22:13.600 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:22:13.601 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:23:44.537 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:23:44.538 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:27:19.997 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:27:19.998 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:29:29.100 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:29:29.101 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:31:21.127 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:31:21.128 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:32:54.873 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:32:54.873 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:36:27.214 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:36:27.216 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:39:00.130 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:39:00.131 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:41:57.656 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:41:57.657 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:52:59.846 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:52:59.846 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 20:54:33.157 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 20:54:33.158 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 21:02:34.769 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 21:02:34.770 !MESSAGE Terminate failed !SESSION 2015-09-13 21:10:47.133 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-13 21:10:51.434 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 21:10:59.977 !MESSAGE (Build 4.1.1.1436893481) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 21:10:59.978 !MESSAGE (Build 4.1.1.1436893481) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-13 21:11:33.868 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-13 21:11:33.870 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-13 21:11:33.895 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-13 21:11:33.898 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-13 21:11:33.899 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-13 21:11:33.900 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.ui 4 0 2015-09-13 21:12:16.619 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Attempted to beginRule: R/, does not match outer scope rule: P/Ti SDK 4.1 Example App !STACK 0 java.lang.IllegalArgumentException: Attempted to beginRule: R/, does not match outer scope rule: P/Ti SDK 4.1 Example App at org.eclipse.core.runtime.Assert.isLegal(Assert.java:63) at org.eclipse.core.internal.jobs.ThreadJob.illegalPush(ThreadJob.java:134) at org.eclipse.core.internal.jobs.ThreadJob.push(ThreadJob.java:333) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:63) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Project.touch(Project.java:1401) at org.eclipse.team.core.RepositoryProvider.unmap(RepositoryProvider.java:277) at com.aptana.git.ui.actions.DisconnectHandler$1.runInWorkspace(DisconnectHandler.java:96) at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:38) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.aptana.git.core 4 0 2015-09-13 21:12:23.003 !MESSAGE (Build 4.1.1.201507141126) [ERROR] !SESSION 2015-09-13 21:17:05.820 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-13 21:17:09.560 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-13 21:17:17.319 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 21:17:17.319 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 21:17:17.321 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 21:17:17.322 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 21:17:17.812 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 21:17:17.813 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-13 21:17:51.562 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-13 21:17:51.590 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-13 21:17:51.593 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-13 21:17:51.594 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-13 21:17:51.596 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-13 21:17:51.597 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 21:30:59.765 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 21:30:59.766 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 21:32:51.749 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 21:32:51.750 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 21:35:39.152 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 21:35:39.153 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 21:38:22.773 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 21:38:22.774 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 21:40:35.672 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 21:40:35.673 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 21:43:54.029 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 21:43:54.030 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 21:47:11.622 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 21:47:11.623 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 21:48:52.092 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 21:48:52.094 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 21:52:20.771 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 21:52:20.772 !MESSAGE Terminate failed !ENTRY org.eclipse.debug.core 4 125 2015-09-13 21:54:29.346 !MESSAGE Error logged from Debug Core: !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at org.eclipse.debug.internal.core.LaunchManager.shutdown(LaunchManager.java:2380) at org.eclipse.debug.core.DebugPlugin.stop(DebugPlugin.java:650) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820) at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950) at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542) at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160) at java.lang.Thread.run(Thread.java:744) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 21:54:29.347 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-13 21:54:29.690 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-13 21:58:45.918 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 21:59:07.706 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 21:59:07.710 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-13 21:59:34.704 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-13 21:59:34.730 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-13 21:59:34.732 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-13 21:59:34.734 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-13 21:59:34.735 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-13 21:59:34.737 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 0 2015-09-13 22:01:50.302 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Errors occurred while grabbing changed file listings !ENTRY org.eclipse.debug.core 4 125 2015-09-13 22:04:55.584 !MESSAGE Error logged from Debug Core: !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at org.eclipse.debug.internal.core.LaunchManager.shutdown(LaunchManager.java:2380) at org.eclipse.debug.core.DebugPlugin.stop(DebugPlugin.java:650) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820) at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950) at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542) at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160) at java.lang.Thread.run(Thread.java:744) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 22:04:55.585 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-13 22:04:55.951 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-13 23:22:42.896 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 23:23:45.926 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 23:23:45.931 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-09-13 23:36:42.923 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 23:37:03.676 !MESSAGE (Build 4.1.1.1436893481) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-13 23:37:03.679 !MESSAGE (Build 4.1.1.1436893481) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-09-13 23:39:55.985 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 23:39:55.985 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 23:39:55.987 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-13 23:39:55.987 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-13 23:41:30.473 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-13 23:41:30.492 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-13 23:41:30.494 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-13 23:41:30.495 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-13 23:41:30.496 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-13 23:41:30.498 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-13 23:43:26.698 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-13 23:43:26.698 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 00:00:28.105 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 00:00:28.106 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 00:01:31.671 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 00:01:31.673 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 00:03:00.104 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 00:03:00.105 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 00:15:31.949 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 00:15:31.950 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 00:20:04.578 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 00:20:04.578 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 00:21:45.544 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 00:21:45.544 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 00:24:00.396 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 00:24:00.397 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 00:32:09.941 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 00:32:09.942 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 01:27:18.910 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 01:27:18.911 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 01:30:04.641 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 01:30:04.643 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 01:34:52.651 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 01:34:52.652 !MESSAGE Terminate failed !ENTRY org.eclipse.debug.core 4 125 2015-09-14 01:40:27.498 !MESSAGE Error logged from Debug Core: !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at org.eclipse.debug.internal.core.LaunchManager.shutdown(LaunchManager.java:2380) at org.eclipse.debug.core.DebugPlugin.stop(DebugPlugin.java:650) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820) at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950) at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542) at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160) at java.lang.Thread.run(Thread.java:744) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 01:40:27.499 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-14 01:40:27.857 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-14 10:27:45.657 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 10:28:10.538 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 10:28:10.539 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-14 10:28:35.491 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-14 10:28:35.517 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-14 10:28:35.520 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-14 10:28:35.522 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-14 10:28:35.523 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-14 10:28:35.525 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 10:34:59.604 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 10:34:59.606 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 0 2015-09-14 10:36:18.754 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Errors occurred while grabbing changed file listings !ENTRY org.eclipse.core.jobs 2 2 2015-09-14 10:44:29.100 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-14 11:09:48.358 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 11:10:13.783 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 11:10:13.787 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-14 11:10:42.984 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-14 11:10:43.000 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-14 11:10:43.002 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-14 11:10:43.003 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-14 11:10:43.004 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-14 11:10:43.005 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-14 11:17:37.584 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-14 11:17:46.970 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 11:18:04.044 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 11:18:04.049 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-14 11:18:29.080 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-14 11:18:29.100 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-14 11:18:29.104 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-14 11:18:29.106 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-14 11:18:29.107 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-14 11:18:29.109 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-14 11:27:46.077 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-14 11:27:49.733 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-14 11:27:58.454 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 11:27:58.455 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 11:27:58.457 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 11:27:58.458 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 11:27:58.718 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 11:27:58.718 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-14 11:28:32.073 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-14 11:28:32.099 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-14 11:28:32.102 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-14 11:28:32.103 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-14 11:28:32.105 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-14 11:28:32.106 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 11:36:42.157 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 11:36:42.158 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 11:39:29.421 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 11:39:29.422 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:11.952 !MESSAGE (Build 4.1.1.201507141126) [ERROR] API Request: appOrganization, params: 315bf201-29d3-4b7b-84e5-14058fc72a27 returned with unexpected response {"success":false,"description":"ERROR | {\"success\":false,\"description\":\"Resource Not Found\",\"code\":404}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:11.952 !MESSAGE (Build 4.1.1.201507141126) [ERROR] ERROR | {"success":false,"description":"Resource Not Found","code":404} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.isCurrentUserAuthorized(ThreeSixtyProject.java:602) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.get360State(Titanium360TiappContributor.java:534) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$5(Titanium360TiappContributor.java:512) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:482) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:11.952 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:11.953 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:16.820 !MESSAGE (Build 4.1.1.201507141126) [ERROR] API Request: appServiceLinks, params: 315bf201-29d3-4b7b-84e5-14058fc72a27 returned with unexpected response {"success":false,"description":"ERROR | {\"success\":false,\"description\":\"Resource Not Found\",\"code\":404}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:16.821 !MESSAGE (Build 4.1.1.201507141126) [ERROR] ERROR | {"success":false,"description":"Resource Not Found","code":404} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:484) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:16.821 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:16.821 !MESSAGE (Build 4.1.1.201507141126) [ERROR] ERROR | {"success":false,"description":"Resource Not Found","code":404} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:484) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:16.822 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:21.194 !MESSAGE (Build 4.1.1.201507141126) [ERROR] API Request: appOrganization, params: 315bf201-29d3-4b7b-84e5-14058fc72a27 returned with unexpected response {"success":false,"description":"ERROR | {\"success\":false,\"description\":\"Resource Not Found\",\"code\":404}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:21.196 !MESSAGE (Build 4.1.1.201507141126) [ERROR] ERROR | {"success":false,"description":"Resource Not Found","code":404} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:552) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:21.197 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.ui 4 0 2015-09-14 11:41:21.198 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Error while adding organization details to Appcelerator Platform Services section. !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:552) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:21.198 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:26.309 !MESSAGE (Build 4.1.1.201507141126) [ERROR] API Request: appServiceLinks, params: 315bf201-29d3-4b7b-84e5-14058fc72a27 returned with unexpected response {"success":false,"description":"ERROR | {\"success\":false,\"description\":\"Resource Not Found\",\"code\":404}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:26.309 !MESSAGE (Build 4.1.1.201507141126) [ERROR] ERROR | {"success":false,"description":"Resource Not Found","code":404} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.isRegistered(ThreeSixtyProject.java:811) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createContactITSection(Titanium360TiappContributor.java:1179) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:676) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:26.310 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:30.689 !MESSAGE (Build 4.1.1.201507141126) [ERROR] API Request: appOrganization, params: 315bf201-29d3-4b7b-84e5-14058fc72a27 returned with unexpected response {"success":false,"description":"ERROR | {\"success\":false,\"description\":\"Resource Not Found\",\"code\":404}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:30.690 !MESSAGE (Build 4.1.1.201507141126) [ERROR] ERROR | {"success":false,"description":"Resource Not Found","code":404} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.isCurrentUserAuthorized(ThreeSixtyProject.java:602) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.get360State(Titanium360TiappContributor.java:534) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.updateControlsData(Titanium360TiappContributor.java:406) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:494) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:30.690 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 11:41:30.691 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !SESSION 2015-09-14 11:41:37.352 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-14 11:41:40.927 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 11:41:55.702 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 11:41:55.706 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-14 11:42:21.179 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-14 11:42:21.199 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-14 11:42:21.202 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-14 11:42:21.204 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-14 11:42:21.205 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-14 11:42:21.206 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 4 2 2015-09-14 11:51:25.607 !MESSAGE An internal error occurred during: "Update iOS info". !STACK 0 java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOfRange(Arrays.java:2694) at java.lang.String.(String.java:203) at java.lang.StringBuilder.toString(StringBuilder.java:405) at com.aptana.core.util.InputStreamGobbler.getResult(InputStreamGobbler.java:60) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:393) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.ios.core.IOSSDKLocator.loadTiInfo(IOSSDKLocator.java:564) at com.appcelerator.titanium.ios.core.IOSSDKLocator.updateTiInfo(IOSSDKLocator.java:144) at com.appcelerator.titanium.ios.core.IOSSDKLocator.access$0(IOSSDKLocator.java:142) at com.appcelerator.titanium.ios.core.IOSSDKLocator$1.run(IOSSDKLocator.java:163) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-14 11:51:25.609 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at org.eclipse.core.runtime.Path.computeSegments(Path.java:486) at org.eclipse.core.runtime.Path.initialize(Path.java:602) at org.eclipse.core.runtime.Path.(Path.java:163) at org.eclipse.core.runtime.Path.fromOSString(Path.java:90) at com.aptana.git.core.model.GitRepository.gitDirPath(GitRepository.java:1798) at com.aptana.git.core.model.GitRepository.workingDirectory(GitRepository.java:632) at com.aptana.git.core.model.GitIndex.workingDirectory(GitIndex.java:771) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-14 11:51:32.384 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-14 12:00:43.858 ----------------------------------------------- eclipse.buildId=4.1.1.201507141126 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 12:01:02.477 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 12:01:02.479 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-14 12:01:28.261 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-14 12:01:28.278 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-14 12:01:28.282 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-14 12:01:28.283 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-14 12:01:28.284 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-14 12:01:28.287 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:06:54.266 !MESSAGE (Build 4.1.1.201507141126) [ERROR] API Request: appOrganization, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"errno\":\"ETIMEDOUT\",\"syscall\":\"connect\",\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:06:54.267 !MESSAGE (Build 4.1.1.201507141126) [ERROR] ERROR | {"code":"ETIMEDOUT","errno":"ETIMEDOUT","syscall":"connect","success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","errno":"ETIMEDOUT","syscall":"connect","success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.launch.contributor.VPCDeployTypeLaunchValidator.validate(VPCDeployTypeLaunchValidator.java:63) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.validateLaunchContributors(NodeAppcCLI.java:635) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:620) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:595) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.build(IOSNodeJSCommandsHelper.java:289) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.installOnDevice(IOSNodeJSCommandsHelper.java:129) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:112) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 12:06:54.267 !MESSAGE ERROR | {"code":"ETIMEDOUT","errno":"ETIMEDOUT","syscall":"connect","success":false} !ENTRY org.eclipse.core.jobs 4 2 2015-09-14 12:08:28.985 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.ProcessEnvironment$Variable.valueOfQueryOnly(ProcessEnvironment.java:165) at java.lang.ProcessEnvironment$Variable.valueOf(ProcessEnvironment.java:170) at java.lang.ProcessEnvironment$StringEnvironment.put(ProcessEnvironment.java:241) at java.lang.ProcessEnvironment$StringEnvironment.put(ProcessEnvironment.java:220) at java.util.AbstractMap.putAll(AbstractMap.java:273) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:130) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:332) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:260) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:238) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.android.core.AndroidSDKLocator.loadTiInfo(AndroidSDKLocator.java:836) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:226) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-14 12:08:28.987 !MESSAGE An internal error occurred during: "Update iOS info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.StringCoding$StringEncoder.encode(StringCoding.java:300) at java.lang.StringCoding.encode(StringCoding.java:344) at java.lang.StringCoding.encode(StringCoding.java:387) at java.lang.String.getBytes(String.java:956) at java.lang.ProcessEnvironment$Value.valueOfQueryOnly(ProcessEnvironment.java:198) at java.lang.ProcessEnvironment$Value.valueOf(ProcessEnvironment.java:203) at java.lang.ProcessEnvironment$StringEnvironment.put(ProcessEnvironment.java:241) at java.lang.ProcessEnvironment$StringEnvironment.put(ProcessEnvironment.java:220) at java.util.AbstractMap.putAll(AbstractMap.java:273) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:130) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:332) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:260) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:238) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.ios.core.IOSSDKLocator.loadTiInfo(IOSSDKLocator.java:564) at com.appcelerator.titanium.ios.core.IOSSDKLocator.updateTiInfo(IOSSDKLocator.java:144) at com.appcelerator.titanium.ios.core.IOSSDKLocator.access$0(IOSSDKLocator.java:142) at com.appcelerator.titanium.ios.core.IOSSDKLocator$1.run(IOSSDKLocator.java:163) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-14 12:08:28.987 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at org.eclipse.core.runtime.Path.computeSegments(Path.java:488) at org.eclipse.core.runtime.Path.initialize(Path.java:602) at org.eclipse.core.runtime.Path.(Path.java:163) at org.eclipse.core.runtime.Path.fromOSString(Path.java:90) at com.aptana.git.core.model.GitRepository.gitDirPath(GitRepository.java:1798) at com.aptana.git.core.model.GitRepository.workingDirectory(GitRepository.java:630) at com.aptana.git.core.model.GitIndex.workingDirectory(GitIndex.java:771) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-14 12:08:28.987 !MESSAGE An internal error occurred during: "Launching Appcelerator iOS Device - 865App". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded !ENTRY org.eclipse.core.resources 4 2 2015-09-14 12:08:34.619 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.core.resources". !STACK 0 org.eclipse.swt.SWTException: Invalid thread access at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Display.error(Display.java:1094) at org.eclipse.swt.widgets.Display.createDisplay(Display.java:846) at org.eclipse.swt.widgets.Display.create(Display.java:829) at org.eclipse.swt.graphics.Device.(Device.java:130) at org.eclipse.swt.widgets.Display.(Display.java:720) at org.eclipse.swt.widgets.Display.(Display.java:711) at org.eclipse.swt.widgets.Display.getDefault(Display.java:1414) at com.aptana.editor.epl.EditorEplPlugin.getStandardDisplay(EditorEplPlugin.java:84) at com.aptana.editor.decorator.ProblemMarkerManager.fireChanges(ProblemMarkerManager.java:210) at com.aptana.editor.decorator.ProblemMarkerManager.resourceChanged(ProblemMarkerManager.java:163) at org.eclipse.core.internal.events.NotificationManager$1.run(NotificationManager.java:291) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.NotificationManager.notify(NotificationManager.java:285) at org.eclipse.core.internal.events.NotificationManager.broadcastChanges(NotificationManager.java:149) at org.eclipse.core.internal.resources.Workspace.broadcastPostChange(Workspace.java:378) at org.eclipse.core.internal.resources.Workspace.endOperation(Workspace.java:1498) at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:45) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.debug.core 4 125 2015-09-14 12:08:40.588 !MESSAGE Error logged from Debug Core: !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at org.eclipse.debug.internal.core.LaunchManager.shutdown(LaunchManager.java:2380) at org.eclipse.debug.core.DebugPlugin.stop(DebugPlugin.java:650) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820) at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950) at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542) at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160) at java.lang.Thread.run(Thread.java:744) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 12:08:40.589 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-14 12:08:40.968 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.usage.internal.DefaultAnalyticsEventHandler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-09-14 12:08:40.968 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.usage.internal.DefaultAnalyticsEventHandler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-09-14 12:08:40.968 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-14 12:08:47.322 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-14 12:08:52.484 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-14 12:09:55.640 !MESSAGE (Build 4.1.1.1436893481) [ERROR] ERROR | getaddrinfo ENOTFOUND !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 12:10:05.926 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 12:10:05.930 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.update.core 4 0 2015-09-14 12:10:31.836 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.update.core/debug/sdk_update Error getting release lists from url 'https://f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com/api/mobilesdk/releases/538936cb-9e4b-49ba-9592-b5350d6db252' !STACK 0 java.net.UnknownHostException: f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:178) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) at java.net.Socket.connect(Socket.java:579) at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:618) at sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:160) at sun.net.NetworkClient.doConnect(NetworkClient.java:180) at sun.net.www.http.HttpClient.openServer(HttpClient.java:432) at sun.net.www.http.HttpClient.openServer(HttpClient.java:527) at sun.net.www.protocol.https.HttpsClient.(HttpsClient.java:275) at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:371) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191) at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:932) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177) at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1300) at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getReleaseListFromURL(TitaniumReleasesUpdater.java:740) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getSDKReleases(TitaniumReleasesUpdater.java:530) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getLatestSDKRelease(TitaniumReleasesUpdater.java:792) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasSDKUpdates(TitaniumReleasesUpdater.java:246) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:202) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:11:00.588 !MESSAGE (Build 4.1.1.201507141126) [ERROR] ERROR | getaddrinfo ENOTFOUND !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | getaddrinfo ENOTFOUND at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 12:11:00.588 !MESSAGE ERROR | getaddrinfo ENOTFOUND !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:11:02.655 !MESSAGE (Build 4.1.1.201507141126) [ERROR] ERROR | getaddrinfo ENOTFOUND !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | getaddrinfo ENOTFOUND at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 12:11:02.655 !MESSAGE ERROR | getaddrinfo ENOTFOUND !ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-09-14 12:11:02.754 !MESSAGE Connection to http://download.appcelerator.com/appcelerator/appc-studio/standalone/update/stable/p2.index failed on download.appcelerator.com: nodename nor servname provided, or not known. Retry attempt 0 started !STACK 0 java.net.UnknownHostException: download.appcelerator.com: nodename nor servname provided, or not known at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901) at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293) at java.net.InetAddress.getAllByName0(InetAddress.java:1246) at java.net.InetAddress.getAllByName(InetAddress.java:1162) at java.net.InetAddress.getAllByName(InetAddress.java:1098) at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:259) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:159) at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:144) at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:131) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446) at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1077) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer.access$0(HttpClientRetrieveFileTransfer.java:1068) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer$1.performFileTransfer(HttpClientRetrieveFileTransfer.java:1064) at org.eclipse.ecf.filetransfer.FileTransferJob.run(FileTransferJob.java:73) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-09-14 12:11:02.988 !MESSAGE Unknown Host: http://download.appcelerator.com/appcelerator/appc-studio/standalone/update/stable/content.xml !STACK 0 java.net.UnknownHostException: download.appcelerator.com at java.net.InetAddress.getAllByName0(InetAddress.java:1250) at java.net.InetAddress.getAllByName(InetAddress.java:1162) at java.net.InetAddress.getAllByName(InetAddress.java:1098) at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:259) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:159) at org.apache.http.impl.conn.ManagedClientConnectionImpl.open(ManagedClientConnectionImpl.java:304) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446) at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:259) at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.update.core 4 0 2015-09-14 12:16:04.448 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.update.core/debug/sdk_update Error getting release lists from url 'https://f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com/api/mobilesdk/releases/7a96ebda-12ba-4ea2-b03f-34c2a2d25c3b' !STACK 0 java.net.UnknownHostException: f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:178) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) at java.net.Socket.connect(Socket.java:579) at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:618) at sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:160) at sun.net.NetworkClient.doConnect(NetworkClient.java:180) at sun.net.www.http.HttpClient.openServer(HttpClient.java:432) at sun.net.www.http.HttpClient.openServer(HttpClient.java:527) at sun.net.www.protocol.https.HttpsClient.(HttpsClient.java:275) at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:371) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191) at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:932) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177) at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1300) at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getReleaseListFromURL(TitaniumReleasesUpdater.java:740) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getSDKReleases(TitaniumReleasesUpdater.java:530) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getLatestSDKRelease(TitaniumReleasesUpdater.java:792) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasSDKUpdates(TitaniumReleasesUpdater.java:246) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:202) at com.appcelerator.titanium.update.ui.handler.TitaniumUpdateHandler$1.run(TitaniumUpdateHandler.java:63) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SESSION 2015-09-14 12:18:47.347 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-14 12:18:51.736 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 12:19:07.176 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 12:19:07.180 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-14 12:19:31.161 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-14 12:19:31.173 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-14 12:19:31.176 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-14 12:19:31.178 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-14 12:19:31.179 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-14 12:19:31.181 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-14 12:26:00.279 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-14 12:26:34.306 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-14 12:26:42.795 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 12:26:42.795 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 12:26:42.797 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 12:26:42.798 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 12:26:43.328 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 12:26:43.328 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-14 12:27:15.183 !MESSAGE (Build 4.1.1.201507141126) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-14 12:27:15.199 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-14 12:27:15.202 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-14 12:27:15.203 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-14 12:27:15.204 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-14 12:27:15.205 !MESSAGE (Build 4.1.1.201507141126) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-14 12:38:36.627 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-14 12:38:51.494 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 12:39:06.217 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 12:39:06.223 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-14 12:39:19.960 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-14 12:39:19.963 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-14 12:39:19.964 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-14 12:39:19.965 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-14 12:39:19.967 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-14 12:39:19.968 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:14.889 !MESSAGE (Build 4.1.0.201507140915) [ERROR] API Request: appOrganization, params: 315bf201-29d3-4b7b-84e5-14058fc72a27 returned with unexpected response {"success":false,"description":"ERROR | {\"success\":false,\"description\":\"Resource Not Found\",\"code\":404}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:14.890 !MESSAGE (Build 4.1.0.201507140915) [ERROR] ERROR | {"success":false,"description":"Resource Not Found","code":404} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.isCurrentUserAuthorized(ThreeSixtyProject.java:602) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.get360State(Titanium360TiappContributor.java:534) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$5(Titanium360TiappContributor.java:512) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:482) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:14.891 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:14.892 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY org.eclipse.ui 4 0 2015-09-14 12:52:18.589 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.IllegalArgumentException: Argument not valid) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:4422) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkParent(Widget.java:511) at org.eclipse.swt.widgets.Widget.(Widget.java:132) at org.eclipse.swt.widgets.Control.(Control.java:116) at org.eclipse.swt.widgets.Scrollable.(Scrollable.java:73) at org.eclipse.swt.widgets.Composite.(Composite.java:91) at org.eclipse.ui.forms.widgets.LayoutComposite.(LayoutComposite.java:24) at org.eclipse.ui.forms.widgets.FormToolkit.createComposite(FormToolkit.java:311) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:555) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) ... 23 more !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:18.721 !MESSAGE (Build 4.1.0.201507140915) [ERROR] API Request: appServiceLinks, params: 315bf201-29d3-4b7b-84e5-14058fc72a27 returned with unexpected response {"success":false,"description":"ERROR | {\"success\":false,\"description\":\"Resource Not Found\",\"code\":404}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:18.721 !MESSAGE (Build 4.1.0.201507140915) [ERROR] ERROR | {"success":false,"description":"Resource Not Found","code":404} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:484) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:18.722 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:18.722 !MESSAGE (Build 4.1.0.201507140915) [ERROR] ERROR | {"success":false,"description":"Resource Not Found","code":404} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:484) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:18.722 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:25.047 !MESSAGE (Build 4.1.0.201507140915) [ERROR] API Request: appOrganization, params: 315bf201-29d3-4b7b-84e5-14058fc72a27 returned with unexpected response {"success":false,"description":"ERROR | {\"success\":false,\"description\":\"Resource Not Found\",\"code\":404}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:25.049 !MESSAGE (Build 4.1.0.201507140915) [ERROR] ERROR | {"success":false,"description":"Resource Not Found","code":404} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:552) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:25.050 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.ui 4 0 2015-09-14 12:52:25.051 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Error while adding organization details to Appcelerator Platform Services section. !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:552) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:25.051 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:32.698 !MESSAGE (Build 4.1.0.201507140915) [ERROR] API Request: appServiceLinks, params: 315bf201-29d3-4b7b-84e5-14058fc72a27 returned with unexpected response {"success":false,"description":"ERROR | {\"success\":false,\"description\":\"Resource Not Found\",\"code\":404}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:32.699 !MESSAGE (Build 4.1.0.201507140915) [ERROR] ERROR | {"success":false,"description":"Resource Not Found","code":404} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.isRegistered(ThreeSixtyProject.java:811) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createContactITSection(Titanium360TiappContributor.java:1179) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:676) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:32.699 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:39.747 !MESSAGE (Build 4.1.0.201507140915) [ERROR] API Request: appOrganization, params: 315bf201-29d3-4b7b-84e5-14058fc72a27 returned with unexpected response {"success":false,"description":"ERROR | {\"success\":false,\"description\":\"Resource Not Found\",\"code\":404}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:39.747 !MESSAGE (Build 4.1.0.201507140915) [ERROR] ERROR | {"success":false,"description":"Resource Not Found","code":404} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"success":false,"description":"Resource Not Found","code":404} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.isCurrentUserAuthorized(ThreeSixtyProject.java:602) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.get360State(Titanium360TiappContributor.java:534) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.updateControlsData(Titanium360TiappContributor.java:406) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:494) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:39.747 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-14 12:52:39.748 !MESSAGE ERROR | {"success":false,"description":"Resource Not Found","code":404} !ENTRY com.aptana.git.core 4 1 2015-09-14 12:52:59.495 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 12:52:59.495 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 12:52:59.497 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 12:52:59.497 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 13:09:24.672 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 13:09:24.672 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 13:11:57.860 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 13:11:57.860 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 13:14:43.949 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 13:14:43.950 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 13:28:19.061 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 13:28:19.062 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 13:29:55.175 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 13:29:55.176 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 13:32:03.242 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 13:32:03.243 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 13:34:46.355 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 13:34:46.356 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 13:41:25.927 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 13:41:25.928 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:05:38.311 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:05:38.311 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:06:54.249 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:06:54.250 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:11:48.123 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:11:48.125 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:15:19.748 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:15:19.749 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:20:56.488 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:20:56.489 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:22:29.121 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:22:29.122 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:24:34.580 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:24:34.582 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:26:10.087 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:26:10.087 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:28:03.493 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:28:03.494 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:29:11.029 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:29:11.032 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:30:38.797 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:30:38.798 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:32:00.811 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:32:00.813 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:33:10.563 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:33:10.564 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:35:28.741 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:35:28.743 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:37:17.093 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:37:17.093 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:42:26.766 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:42:26.767 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:43:39.068 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:43:39.069 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:49:05.243 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:49:05.243 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:50:33.965 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:50:33.966 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:51:53.993 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:51:53.994 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:55:09.757 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:55:09.758 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 14:56:51.215 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 14:56:51.216 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:00:40.344 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:00:40.345 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:04:40.760 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:04:40.761 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:07:41.097 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:07:41.097 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:09:01.289 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:09:01.290 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:10:11.950 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:10:11.951 !MESSAGE Terminate failed !SESSION 2015-09-14 15:15:14.471 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-14 15:15:24.461 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 15:15:33.316 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 15:15:33.321 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-14 15:15:46.123 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-14 15:15:46.138 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-14 15:15:46.140 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-14 15:15:46.142 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-14 15:15:46.143 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-14 15:15:46.144 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 1 2015-09-14 15:19:19.997 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:19:19.997 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:19:20.000 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:19:20.001 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:20:46.407 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:20:46.409 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-14 15:21:14.052 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:21:14.052 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:21:14.053 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:21:14.054 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:22:26.542 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:22:26.543 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-14 15:22:51.780 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:22:51.780 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:22:51.781 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:22:51.781 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:24:53.023 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:24:53.024 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-14 15:25:44.686 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:25:44.686 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:25:44.688 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:25:44.688 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:26:14.381 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:26:14.382 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-14 15:26:45.863 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:26:45.864 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:26:45.865 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-14 15:26:45.865 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:28:54.001 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:28:54.002 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:35:05.572 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:35:05.573 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:36:08.819 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:36:08.820 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:42:25.207 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:42:25.208 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:44:25.348 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:44:25.349 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:47:24.142 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:47:24.142 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:48:47.094 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:48:47.095 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:49:52.959 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:49:52.960 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:54:15.687 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:54:15.688 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:56:12.633 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:56:12.634 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 15:59:34.850 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 15:59:34.851 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:05:39.922 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:05:39.923 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:09:32.039 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:09:32.040 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:11:11.149 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:11:11.150 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:16:55.196 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:16:55.196 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:19:12.810 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:19:12.812 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:20:15.651 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:20:15.651 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:21:16.349 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:21:16.350 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:22:28.975 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:22:28.976 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:24:08.209 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:24:08.209 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:30:44.436 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:30:44.437 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:32:57.253 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:32:57.253 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:37:39.261 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:37:39.261 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:38:58.383 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:38:58.383 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:41:03.271 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:41:03.272 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 16:42:20.068 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:42:20.069 !MESSAGE Terminate failed !ENTRY org.eclipse.debug.core 4 125 2015-09-14 16:43:25.544 !MESSAGE Error logged from Debug Core: !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at org.eclipse.debug.internal.core.LaunchManager.shutdown(LaunchManager.java:2380) at org.eclipse.debug.core.DebugPlugin.stop(DebugPlugin.java:650) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820) at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950) at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542) at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160) at java.lang.Thread.run(Thread.java:744) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 16:43:25.544 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-14 16:43:26.557 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-14 18:11:02.053 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 18:11:22.172 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 18:11:22.174 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-14 18:11:28.973 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-14 18:11:28.991 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-14 18:11:28.995 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-14 18:11:28.997 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-14 18:11:28.998 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-14 18:11:29.000 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-14 18:17:28.818 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 18:17:47.988 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 18:17:47.990 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-09-14 18:17:48.193 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-14 18:17:48.194 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-14 18:17:48.194 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-14 18:17:48.194 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 18:21:24.971 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 18:21:24.972 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 18:26:48.828 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 18:26:48.828 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 18:39:07.481 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 18:39:07.482 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 18:40:32.867 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 18:40:32.868 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 18:42:52.184 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 18:42:52.184 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 18:45:14.166 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 18:45:14.167 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 18:48:06.783 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 18:48:06.784 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 22:48:11.406 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 22:48:11.407 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 22:51:20.636 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 22:51:20.636 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 22:53:04.723 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 22:53:04.723 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 22:54:25.403 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 22:54:25.404 !MESSAGE Terminate failed !ENTRY com.aptana.editor.findbar 4 4 2015-09-14 22:58:16.142 !MESSAGE No match available !STACK 0 java.lang.IllegalStateException: No match available at java.util.regex.Matcher.start(Matcher.java:342) at org.eclipse.jface.text.FindReplaceDocumentAdapter.findReplace(FindReplaceDocumentAdapter.java:204) at org.eclipse.jface.text.FindReplaceDocumentAdapter.replace(FindReplaceDocumentAdapter.java:604) at org.eclipse.jface.text.TextViewer$FindReplaceTarget.replaceSelection(TextViewer.java:832) at org.eclipse.ui.texteditor.FindReplaceTarget.replaceSelection(FindReplaceTarget.java:141) at com.aptana.editor.findbar.impl.CopiedFromFindReplaceDialog.replaceSelection(CopiedFromFindReplaceDialog.java:50) at com.aptana.editor.findbar.impl.FindBarDecorator.replace(FindBarDecorator.java:1229) at com.aptana.editor.findbar.impl.FindBarDecorator.handleWidgetSelected(FindBarDecorator.java:1149) at com.aptana.editor.findbar.impl.FindBarDecorator.widgetSelected(FindBarDecorator.java:1134) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 22:58:43.101 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 22:58:43.102 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 23:01:46.965 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 23:01:46.966 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 23:05:31.616 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 23:05:31.617 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 23:06:37.215 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 23:06:37.216 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 23:12:49.149 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 23:12:49.150 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 23:14:15.042 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 23:14:15.043 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 23:25:00.796 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 23:25:00.797 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 23:31:05.919 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 23:31:05.919 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-14 23:34:11.802 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-14 23:34:11.803 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-14 23:50:19.549 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-14 23:54:25.578 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 23:54:47.274 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-14 23:54:47.275 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-14 23:54:51.009 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-14 23:54:51.028 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-14 23:54:51.032 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-14 23:54:51.034 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-14 23:54:51.036 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-14 23:54:51.039 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 4 2 2015-09-15 00:01:34.727 !MESSAGE An internal error occurred during: "Periodic workspace save.". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack2.(XMLDocumentFragmentScannerImpl.java:2117) at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.(XMLDocumentFragmentScannerImpl.java:288) at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.(XMLDocumentScannerImpl.java:239) at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.(XMLNSDocumentScannerImpl.java:63) at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.(XML11Configuration.java:562) at com.sun.org.apache.xerces.internal.parsers.XIncludeAwareParserConfiguration.(XIncludeAwareParserConfiguration.java:130) at com.sun.org.apache.xerces.internal.parsers.XIncludeAwareParserConfiguration.(XIncludeAwareParserConfiguration.java:91) at com.sun.org.apache.xerces.internal.parsers.DOMParser.(DOMParser.java:144) at com.sun.org.apache.xerces.internal.parsers.DOMParser.(DOMParser.java:128) at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.(DocumentBuilderImpl.java:137) at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl.newDocumentBuilder(DocumentBuilderFactoryImpl.java:76) at org.eclipse.debug.internal.core.LaunchManager.getDocument(LaunchManager.java:551) at org.eclipse.debug.internal.core.LaunchConfiguration.getMemento(LaunchConfiguration.java:592) at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationManager.createEntry(LaunchConfigurationManager.java:437) at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationManager.getHistoryAsXML(LaunchConfigurationManager.java:416) at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationManager.persistLaunchHistory(LaunchConfigurationManager.java:471) at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationManager.saving(LaunchConfigurationManager.java:1198) at org.eclipse.debug.internal.ui.DebugUIPlugin$2.saving(DebugUIPlugin.java:526) at org.eclipse.core.internal.resources.SaveManager.executeLifecycle(SaveManager.java:386) at org.eclipse.core.internal.resources.SaveManager$1.run(SaveManager.java:195) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.resources.SaveManager.broadcastLifecycle(SaveManager.java:198) at org.eclipse.core.internal.resources.SaveManager.save(SaveManager.java:1165) at org.eclipse.core.internal.resources.SaveManager.save(SaveManager.java:1144) at org.eclipse.core.internal.resources.DelayedSnapshotJob.run(DelayedSnapshotJob.java:51) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-15 00:01:34.729 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at com.aptana.git.core.model.GitRepository.gitDirPath(GitRepository.java:1795) at com.aptana.git.core.model.GitRepository.workingDirectory(GitRepository.java:630) at com.aptana.git.core.model.GitIndex.workingDirectory(GitIndex.java:771) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-15 00:01:34.729 !MESSAGE An internal error occurred during: "Update iOS info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.util.Arrays.copyOfRange(Arrays.java:2694) at java.lang.String.(String.java:203) at org.json.simple.parser.Yylex.yytext(Yylex.java:424) at org.json.simple.parser.Yylex.yylex(Yylex.java:575) at org.json.simple.parser.JSONParser.nextToken(JSONParser.java:270) at org.json.simple.parser.JSONParser.parse(JSONParser.java:119) at org.json.simple.parser.JSONParser.parse(JSONParser.java:82) at org.json.simple.parser.JSONParser.parse(JSONParser.java:76) at com.appcelerator.titanium.ios.core.IOSSDKLocator.loadTiInfo(IOSSDKLocator.java:576) at com.appcelerator.titanium.ios.core.IOSSDKLocator.updateTiInfo(IOSSDKLocator.java:144) at com.appcelerator.titanium.ios.core.IOSSDKLocator.access$0(IOSSDKLocator.java:142) at com.appcelerator.titanium.ios.core.IOSSDKLocator$1.run(IOSSDKLocator.java:163) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-15 00:01:41.738 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-15 00:02:06.679 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 00:02:38.245 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 00:02:38.247 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-15 00:02:42.589 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-15 00:02:42.601 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-15 00:02:42.618 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-15 00:02:42.619 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-15 00:02:42.621 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-15 00:02:42.623 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 00:16:17.838 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 00:16:17.840 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 00:24:51.624 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 00:24:51.624 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 00:30:05.059 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 00:30:05.060 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 00:36:39.253 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 00:36:39.253 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 00:38:40.651 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 00:38:40.652 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 00:42:53.063 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 00:42:53.064 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 00:44:10.182 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 00:44:10.182 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 00:47:27.372 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 00:47:27.373 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 00:53:22.616 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 00:53:22.617 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 00:56:33.313 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 00:56:33.313 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 01:00:18.762 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 01:00:18.762 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 01:02:55.001 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 01:02:55.002 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 01:05:25.119 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 01:05:25.120 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 01:08:51.029 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 01:08:51.031 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 01:22:28.828 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 01:22:28.828 !MESSAGE Terminate failed !SESSION 2015-09-15 01:26:34.851 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-15 01:26:38.724 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 01:26:47.085 !MESSAGE (Build 4.1.0.1423009896) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 01:26:47.086 !MESSAGE (Build 4.1.0.1423009896) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-15 01:26:58.392 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-15 01:26:58.422 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-15 01:26:58.428 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-15 01:26:58.429 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-15 01:26:58.430 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-15 01:26:58.431 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 01:34:24.507 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 01:34:24.508 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 01:38:15.795 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 01:38:15.795 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 01:41:12.486 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 01:41:12.487 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 01:43:15.818 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 01:43:15.819 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 01:52:18.975 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 01:52:18.976 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 01:54:46.871 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 01:54:46.873 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:03:55.125 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:03:55.126 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:04:51.595 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:04:51.596 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:05:44.153 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:05:44.154 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:07:05.395 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:07:05.396 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:08:16.300 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:08:16.302 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:09:57.308 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:09:57.309 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:12:54.043 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:12:54.045 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:14:54.768 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:14:54.769 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:18:05.882 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:18:05.883 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:21:58.611 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:21:58.612 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:25:31.168 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:25:31.169 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:41:28.835 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:41:28.836 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:43:07.871 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:43:07.872 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:45:09.665 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:45:09.669 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:50:07.200 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:50:07.201 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:52:23.125 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:52:23.126 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:53:30.137 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:53:30.138 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 02:58:34.734 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 02:58:34.735 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 03:02:03.162 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 03:02:03.163 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 03:05:33.283 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 03:05:33.285 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 03:07:34.961 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 03:07:34.962 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 03:10:27.490 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 03:10:27.491 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 03:12:49.563 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 03:12:49.564 !MESSAGE Terminate failed !ENTRY org.eclipse.debug.core 4 125 2015-09-15 03:17:20.478 !MESSAGE Error logged from Debug Core: !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at org.eclipse.debug.internal.core.LaunchManager.shutdown(LaunchManager.java:2380) at org.eclipse.debug.core.DebugPlugin.stop(DebugPlugin.java:650) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820) at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950) at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542) at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160) at java.lang.Thread.run(Thread.java:744) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 03:17:20.478 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-15 03:17:22.359 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-15 12:23:59.581 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 12:24:23.927 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 12:24:23.929 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-15 12:24:29.172 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-15 12:24:29.200 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-15 12:24:29.207 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-15 12:24:29.208 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-15 12:24:29.211 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-15 12:24:29.212 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 12:38:33.995 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 12:38:33.997 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 12:39:37.536 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 12:39:37.537 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 12:41:39.959 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 12:41:39.960 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 12:43:44.984 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 12:43:44.985 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-15 12:48:01.938 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-15 12:52:30.246 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 12:52:50.215 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 12:52:50.220 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-15 12:52:58.441 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-15 12:52:58.464 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-15 12:52:58.466 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-15 12:52:58.468 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-15 12:52:58.469 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-15 12:52:58.471 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 12:59:40.748 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 12:59:40.749 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:04:44.546 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:04:44.546 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:06:11.963 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:06:11.964 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:07:44.949 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:07:44.949 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:11:50.424 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:11:50.425 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:25:19.469 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:25:19.469 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:31:59.846 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:31:59.847 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:39:18.323 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:39:18.324 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:40:58.774 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:40:58.775 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:45:11.093 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:45:11.094 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:50:42.124 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:50:42.125 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:51:37.325 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:51:37.326 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:53:07.169 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:53:07.170 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:55:36.825 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:55:36.826 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 13:57:19.915 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 13:57:19.915 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:03:50.880 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:03:50.881 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:15:40.085 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:15:40.086 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:23:22.589 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:23:22.590 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:27:49.563 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:27:49.564 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:29:55.009 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:29:55.011 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:31:47.355 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:31:47.355 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:32:53.532 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:32:53.533 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:36:38.431 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:36:38.432 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:39:45.773 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:39:45.783 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:41:05.494 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:41:05.495 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:53:49.878 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:53:49.879 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:57:02.319 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:57:02.319 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 14:59:34.424 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 14:59:34.426 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:02:42.547 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:02:42.548 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:05:27.638 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:05:27.639 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:08:32.505 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:08:32.506 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:10:07.305 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:10:07.306 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:11:10.728 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:11:10.732 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:13:22.558 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:13:22.559 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:16:20.852 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:16:20.852 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:17:48.567 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:17:48.568 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:21:38.025 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:21:38.026 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:23:42.822 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:23:42.823 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:26:21.732 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:26:21.733 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:29:30.360 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:29:30.362 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:30:58.386 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:30:58.386 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:31:50.868 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:31:50.869 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:38:23.696 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:38:23.696 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:39:43.367 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:39:43.368 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:41:31.632 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:41:31.633 !MESSAGE Terminate failed !SESSION 2015-09-15 15:43:39.434 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-15 15:43:45.620 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 15:43:54.648 !MESSAGE (Build 4.1.0.1423009896) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 15:43:54.651 !MESSAGE (Build 4.1.0.1423009896) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-15 15:44:10.538 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-15 15:44:10.561 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-15 15:44:10.566 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-15 15:44:10.568 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-15 15:44:10.569 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-15 15:44:10.570 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:52:43.532 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:52:43.534 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:53:37.014 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:53:37.016 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:54:59.717 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:54:59.718 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 15:58:35.461 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 15:58:35.462 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 16:02:05.014 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 16:02:05.016 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 16:12:46.339 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 16:12:46.340 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 16:17:24.278 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 16:17:24.278 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 16:19:17.793 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 16:19:17.794 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 16:21:42.724 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 16:21:42.725 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 16:26:11.710 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 16:26:11.712 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 16:27:08.533 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 16:27:08.534 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 16:28:05.701 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 16:28:05.702 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 16:29:08.808 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 16:29:08.809 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 16:30:49.367 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 16:30:49.368 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-15 16:31:57.399 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-15 17:23:48.203 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 17:26:40.493 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 17:26:40.494 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-15 17:26:46.940 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-15 17:26:46.943 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-15 17:26:46.964 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-15 17:26:46.966 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-15 17:26:46.968 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-15 17:26:46.970 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 17:33:13.342 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 17:33:13.344 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 17:35:09.937 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 17:35:09.938 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 17:37:41.050 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 17:37:41.050 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 17:39:23.427 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 17:39:23.427 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 17:41:05.679 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 17:41:05.680 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 17:45:31.910 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 17:45:31.911 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 17:48:21.373 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 17:48:21.374 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 17:52:34.976 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 17:52:34.976 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 17:54:49.430 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 17:54:49.431 !MESSAGE Terminate failed !ENTRY com.aptana.js.core 4 0 2015-09-15 18:10:21.127 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Source type cannot be null or empty !STACK 0 java.lang.IllegalArgumentException: Source type cannot be null or empty at com.appcelerator.titanium.alloy.core.js.inferencing.AlloyJSAliasResolver.resolve(AlloyJSAliasResolver.java:26) at com.aptana.js.internal.core.inferencing.AliasResolverFactory.resolve(AliasResolverFactory.java:100) at com.aptana.js.core.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:704) at com.aptana.js.core.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.editor.js.contentassist.ParseUtil.getReceiverTypeNames(ParseUtil.java:451) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:56) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.aptana.js.core 4 0 2015-09-15 18:10:21.131 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Source type cannot be null or empty !STACK 0 java.lang.IllegalArgumentException: Source type cannot be null or empty at com.appcelerator.titanium.alloy.core.js.inferencing.AlloyJSAliasResolver.resolve(AlloyJSAliasResolver.java:26) at com.aptana.js.internal.core.inferencing.AliasResolverFactory.resolve(AliasResolverFactory.java:100) at com.aptana.js.core.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:704) at com.aptana.js.core.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.editor.js.contentassist.ParseUtil.getReceiverTypeNames(ParseUtil.java:451) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:56) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 18:12:45.807 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 18:12:45.808 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 18:15:20.258 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 18:15:20.258 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-15 18:18:25.616 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:18:25.617 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:18:25.626 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:18:25.627 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.git.core 4 1 2015-09-15 18:22:30.493 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:22:30.493 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:22:30.494 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:22:30.494 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 18:25:59.016 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 18:25:59.017 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-15 18:26:13.767 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:26:13.768 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:26:13.769 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:26:13.769 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 18:29:50.096 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 18:29:50.097 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-15 18:30:03.452 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:30:03.452 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:30:03.454 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:30:03.454 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.git.core 4 1 2015-09-15 18:35:09.188 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:35:09.188 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:35:09.190 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 18:35:09.190 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY org.eclipse.core.jobs 4 2 2015-09-15 19:04:11.260 !MESSAGE An internal error occurred during: "Update iOS info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.Object.clone(Native Method) at java.util.Arrays$ArrayList.toArray(Arrays.java:2851) at java.util.ArrayList.(ArrayList.java:164) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:84) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:332) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:260) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:238) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.ios.core.IOSSDKLocator.loadTiInfo(IOSSDKLocator.java:564) at com.appcelerator.titanium.ios.core.IOSSDKLocator.updateTiInfo(IOSSDKLocator.java:144) at com.appcelerator.titanium.ios.core.IOSSDKLocator.access$0(IOSSDKLocator.java:142) at com.appcelerator.titanium.ios.core.IOSSDKLocator$1.run(IOSSDKLocator.java:163) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-15 19:04:11.262 !MESSAGE An internal error occurred during: "Workbench Auto-Save Job". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1877) at org.eclipse.swt.internal.cocoa.id.objc_getClass(id.java:42) at org.eclipse.swt.internal.cocoa.NSObject.alloc(NSObject.java:28) at org.eclipse.swt.widgets.Display.wakeThread(Display.java:4912) at org.eclipse.swt.widgets.Synchronizer.addLast(Synchronizer.java:71) at org.eclipse.swt.widgets.Synchronizer.asyncExec(Synchronizer.java:93) at org.eclipse.ui.internal.UISynchronizer.asyncExec(UISynchronizer.java:134) at org.eclipse.swt.widgets.Display.asyncExec(Display.java:594) at org.eclipse.ui.progress.UIJob.run(UIJob.java:84) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.debug.core 4 125 2015-09-15 19:04:22.951 !MESSAGE Error logged from Debug Core: !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at org.eclipse.debug.internal.core.LaunchManager.shutdown(LaunchManager.java:2380) at org.eclipse.debug.core.DebugPlugin.stop(DebugPlugin.java:650) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820) at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950) at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542) at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160) at java.lang.Thread.run(Thread.java:744) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 19:04:22.952 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-15 19:04:23.834 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.appcelerator.titanium.android.core.AndroidSDKLocator$1 !ENTRY org.eclipse.core.jobs 2 2 2015-09-15 19:04:23.835 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-15 19:05:03.713 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 19:05:23.919 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 19:05:23.924 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-15 19:05:27.674 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-15 19:05:27.681 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-15 19:05:27.701 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-15 19:05:27.703 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-15 19:05:27.705 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-15 19:05:27.706 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 19:21:10.693 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 19:21:10.695 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 19:29:14.039 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 19:29:14.040 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 19:31:59.995 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 19:31:59.996 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 19:36:22.147 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 19:36:22.147 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 19:37:51.086 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 19:37:51.087 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 19:40:45.410 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 19:40:45.410 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-15 20:21:34.431 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-15 20:21:34.431 !MESSAGE GC overhead limit exceeded !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.util.Arrays.copyOfRange(Arrays.java:2694) at java.lang.String.(String.java:203) at java.lang.String.substring(String.java:1913) at org.eclipse.core.runtime.Path.computeSegments(Path.java:488) at org.eclipse.core.runtime.Path.initialize(Path.java:602) at org.eclipse.core.runtime.Path.fromPortableString(Path.java:106) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.readOtherFiles(GitIndex.java:1056) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1033) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 20:36:17.871 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 20:36:17.872 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 20:43:02.490 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 20:43:02.490 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 20:47:15.767 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 20:47:15.768 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 20:50:34.573 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 20:50:34.574 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 20:52:28.047 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 20:52:28.047 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 20:56:22.627 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 20:56:22.629 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 20:58:20.314 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 20:58:20.315 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:00:41.888 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:00:41.890 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:02:02.357 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:02:02.358 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:03:28.075 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:03:28.075 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:04:51.020 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:04:51.034 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:06:09.165 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:06:09.166 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:07:20.653 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:07:20.653 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:13:37.752 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:13:37.754 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:17:21.801 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:17:21.801 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:19:15.186 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:19:15.186 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:21:43.105 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:21:43.106 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:24:20.051 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:24:20.053 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:25:59.700 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:25:59.700 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:27:48.318 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:27:48.319 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:29:26.581 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:29:26.582 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:33:10.623 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:33:10.624 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 21:34:55.529 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 21:34:55.530 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 4 2 2015-09-15 22:04:02.843 !MESSAGE An internal error occurred during: "Update iOS info". !STACK 0 java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOfRange(Arrays.java:2694) at java.lang.String.(String.java:203) at java.lang.StringBuilder.toString(StringBuilder.java:405) at com.aptana.core.util.InputStreamGobbler.getResult(InputStreamGobbler.java:60) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:393) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.ios.core.IOSSDKLocator.loadTiInfo(IOSSDKLocator.java:564) at com.appcelerator.titanium.ios.core.IOSSDKLocator.updateTiInfo(IOSSDKLocator.java:144) at com.appcelerator.titanium.ios.core.IOSSDKLocator.access$0(IOSSDKLocator.java:142) at com.appcelerator.titanium.ios.core.IOSSDKLocator$1.run(IOSSDKLocator.java:163) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-15 22:04:09.773 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-15 22:04:14.747 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 22:04:44.365 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 22:04:44.370 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-15 22:04:48.370 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-15 22:04:48.383 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-15 22:04:48.400 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-15 22:04:48.402 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-15 22:04:48.403 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-15 22:04:48.405 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 4 2 2015-09-15 22:13:23.809 !MESSAGE An internal error occurred during: "Searching for local changes". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at org.eclipse.core.internal.filesystem.local.LocalFile.getChild(LocalFile.java:185) at org.eclipse.core.filesystem.provider.FileStore.childStores(FileStore.java:127) at org.eclipse.core.filesystem.provider.FileStore.childInfos(FileStore.java:106) at org.eclipse.core.internal.localstore.UnifiedTree.getLocalList(UnifiedTree.java:346) at org.eclipse.core.internal.localstore.UnifiedTree.addChildren(UnifiedTree.java:138) at org.eclipse.core.internal.localstore.UnifiedTree.addNodeChildrenToQueue(UnifiedTree.java:244) at org.eclipse.core.internal.localstore.UnifiedTree.accept(UnifiedTree.java:110) at org.eclipse.core.internal.localstore.FileSystemResourceManager.isSynchronized(FileSystemResourceManager.java:716) at org.eclipse.core.internal.resources.Resource.isSynchronized(Resource.java:1543) at org.eclipse.core.internal.refresh.PollingMonitor.poll(PollingMonitor.java:173) at org.eclipse.core.internal.refresh.PollingMonitor.run(PollingMonitor.java:132) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-15 22:13:23.811 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at org.eclipse.core.runtime.Path.removeLastSegments(Path.java:834) at com.aptana.git.core.model.GitRepository.workingDirectory(GitRepository.java:632) at com.aptana.git.core.model.GitIndex.workingDirectory(GitIndex.java:771) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-15 22:13:23.811 !MESSAGE An internal error occurred during: "Update iOS info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.ProcessEnvironment$Variable.valueOfQueryOnly(ProcessEnvironment.java:165) at java.lang.ProcessEnvironment$Variable.valueOf(ProcessEnvironment.java:170) at java.lang.ProcessEnvironment$StringEnvironment.put(ProcessEnvironment.java:241) at java.lang.ProcessEnvironment$StringEnvironment.put(ProcessEnvironment.java:220) at java.util.AbstractMap.putAll(AbstractMap.java:273) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:130) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:332) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:260) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:238) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.ios.core.IOSSDKLocator.loadTiInfo(IOSSDKLocator.java:564) at com.appcelerator.titanium.ios.core.IOSSDKLocator.updateTiInfo(IOSSDKLocator.java:144) at com.appcelerator.titanium.ios.core.IOSSDKLocator.access$0(IOSSDKLocator.java:142) at com.appcelerator.titanium.ios.core.IOSSDKLocator$1.run(IOSSDKLocator.java:163) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-15 22:13:31.040 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-15 22:16:00.041 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 22:19:37.316 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 22:19:37.318 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 22:22:34.548 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 22:22:34.550 !MESSAGE Terminate failed !ENTRY org.eclipse.ui 4 0 2015-09-15 22:29:16.321 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.OutOfMemoryError: Java heap space) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.OutOfMemoryError: Java heap space !ENTRY org.eclipse.core.jobs 4 2 2015-09-15 22:29:16.323 !MESSAGE An internal error occurred during: "Searching for local changes". !STACK 0 java.lang.OutOfMemoryError: Java heap space at java.io.UnixFileSystem.resolve(UnixFileSystem.java:108) at java.io.File.(File.java:367) at org.eclipse.core.internal.filesystem.local.LocalFile.getChild(LocalFile.java:185) at org.eclipse.core.filesystem.provider.FileStore.childStores(FileStore.java:127) at org.eclipse.core.filesystem.provider.FileStore.childInfos(FileStore.java:106) at org.eclipse.core.internal.localstore.UnifiedTree.getLocalList(UnifiedTree.java:346) at org.eclipse.core.internal.localstore.UnifiedTree.addChildren(UnifiedTree.java:138) at org.eclipse.core.internal.localstore.UnifiedTree.addNodeChildrenToQueue(UnifiedTree.java:244) at org.eclipse.core.internal.localstore.UnifiedTree.accept(UnifiedTree.java:110) at org.eclipse.core.internal.localstore.FileSystemResourceManager.isSynchronized(FileSystemResourceManager.java:716) at org.eclipse.core.internal.resources.Resource.isSynchronized(Resource.java:1543) at org.eclipse.core.internal.refresh.PollingMonitor.poll(PollingMonitor.java:173) at org.eclipse.core.internal.refresh.PollingMonitor.run(PollingMonitor.java:132) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 0 2015-09-15 22:29:16.324 !MESSAGE Error occurred during status handling !STACK 0 java.lang.OutOfMemoryError: Java heap space !ENTRY org.eclipse.ui 4 0 2015-09-15 22:29:16.324 !MESSAGE Error occurred during status handling !STACK 0 java.lang.OutOfMemoryError: Java heap space !ENTRY org.eclipse.core.jobs 4 2 2015-09-15 22:29:16.325 !MESSAGE An internal error occurred during: "Searching for local changes". !STACK 0 java.lang.OutOfMemoryError: Java heap space at java.io.UnixFileSystem.resolve(UnixFileSystem.java:108) at java.io.File.(File.java:367) at org.eclipse.core.internal.filesystem.local.LocalFile.getChild(LocalFile.java:185) at org.eclipse.core.filesystem.provider.FileStore.childStores(FileStore.java:127) at org.eclipse.core.filesystem.provider.FileStore.childInfos(FileStore.java:106) at org.eclipse.core.internal.localstore.UnifiedTree.getLocalList(UnifiedTree.java:346) at org.eclipse.core.internal.localstore.UnifiedTree.addChildren(UnifiedTree.java:138) at org.eclipse.core.internal.localstore.UnifiedTree.addNodeChildrenToQueue(UnifiedTree.java:244) at org.eclipse.core.internal.localstore.UnifiedTree.accept(UnifiedTree.java:110) at org.eclipse.core.internal.localstore.FileSystemResourceManager.isSynchronized(FileSystemResourceManager.java:716) at org.eclipse.core.internal.resources.Resource.isSynchronized(Resource.java:1543) at org.eclipse.core.internal.refresh.PollingMonitor.poll(PollingMonitor.java:173) at org.eclipse.core.internal.refresh.PollingMonitor.run(PollingMonitor.java:132) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 22:32:12.283 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 22:32:12.284 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 22:34:56.365 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 22:34:56.366 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 22:36:28.613 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 22:36:28.614 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 22:37:38.554 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 22:37:38.555 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 22:39:09.698 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 22:39:09.699 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 22:42:33.953 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 22:42:33.954 !MESSAGE Terminate failed !SESSION 2015-09-15 22:43:50.166 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-15 22:51:05.552 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-15 22:51:14.064 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:51:14.064 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:51:14.065 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:51:14.066 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 22:51:14.509 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-15 22:51:14.509 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-15 22:51:25.360 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-15 22:51:25.376 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-15 22:51:25.379 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-15 22:51:25.381 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-15 22:51:25.382 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-15 22:51:25.384 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 1 2015-09-15 22:55:02.646 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:55:02.647 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:55:02.649 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:55:02.649 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 22:56:29.053 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 22:56:29.054 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-15 22:56:54.172 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:56:54.172 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:56:54.173 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:56:54.174 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 22:58:27.620 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 22:58:27.621 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-15 22:58:44.495 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:58:44.496 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:58:44.499 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:58:44.500 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.git.core 4 1 2015-09-15 22:59:10.754 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:59:10.754 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:59:10.755 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 22:59:10.756 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:01:16.967 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:01:16.967 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-15 23:01:39.768 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:01:39.769 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:01:39.770 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:01:39.770 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:09:23.745 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:09:23.746 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-15 23:09:56.939 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:09:56.940 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:09:56.942 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:09:56.942 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:14:54.859 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:14:54.860 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-15 23:15:23.310 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:15:23.311 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:15:23.314 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:15:23.315 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:16:23.132 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:16:23.133 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-15 23:16:51.717 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:16:51.717 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:16:51.720 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:16:51.721 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:20:25.223 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:20:25.224 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-15 23:20:49.582 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:20:49.582 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:20:49.586 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:20:49.587 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:22:38.555 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:22:38.556 !MESSAGE Terminate failed !ENTRY com.aptana.git.core 4 1 2015-09-15 23:23:37.605 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:23:37.605 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:23:37.607 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-15 23:23:37.608 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:26:25.800 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:26:25.801 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:28:51.023 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:28:51.023 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:30:26.606 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:30:26.607 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:31:52.512 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:31:52.513 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:33:24.173 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:33:24.174 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:34:56.972 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:34:56.972 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-15 23:39:15.677 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-15 23:39:15.678 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 00:14:19.457 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 00:14:19.458 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 00:16:36.172 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 00:16:36.173 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 00:19:21.331 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 00:19:21.332 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 00:28:45.191 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 00:28:45.192 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 00:40:15.783 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 00:40:15.784 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 00:42:47.050 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 00:42:47.050 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 00:44:19.064 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 00:44:19.065 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 00:45:22.677 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 00:45:22.678 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:01:54.320 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:01:54.321 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:04:18.227 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:04:18.228 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:11:58.586 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:11:58.587 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:14:22.925 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:14:22.925 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:20:22.190 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:20:22.191 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:27:22.768 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:27:22.769 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:28:37.388 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:28:37.389 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:33:48.204 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:33:48.205 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:36:22.987 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:36:22.988 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:40:34.817 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:40:34.817 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:43:05.092 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:43:05.093 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:46:34.378 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:46:34.392 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:53:35.977 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:53:35.979 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 01:58:17.624 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 01:58:17.625 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 02:01:03.365 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 02:01:03.366 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 02:02:30.323 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 02:02:30.325 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 02:05:39.568 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 02:05:39.569 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 02:09:38.425 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 02:09:38.426 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 02:12:26.343 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 02:12:26.344 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 02:25:13.416 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 02:25:13.417 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 02:26:52.029 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 02:26:52.030 !MESSAGE Terminate failed !SESSION 2015-09-16 02:30:10.360 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-16 02:30:14.859 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-16 02:30:25.652 !MESSAGE (Build 4.1.0.1423009896) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-16 02:30:25.655 !MESSAGE (Build 4.1.0.1423009896) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-16 02:30:44.343 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-16 02:30:44.360 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-16 02:30:44.365 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-16 02:30:44.366 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-16 02:30:44.368 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-16 02:30:44.369 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 1 2015-09-16 02:33:18.235 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-16 02:33:18.235 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-16 02:33:18.236 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-16 02:33:18.237 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY org.eclipse.debug.core 4 125 2015-09-16 02:40:44.669 !MESSAGE Error logged from Debug Core: !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at org.eclipse.debug.internal.core.LaunchManager.shutdown(LaunchManager.java:2380) at org.eclipse.debug.core.DebugPlugin.stop(DebugPlugin.java:650) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820) at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950) at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542) at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160) at java.lang.Thread.run(Thread.java:744) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 02:40:44.669 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-16 02:40:45.517 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-16 03:12:56.679 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-16 03:13:19.372 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-16 03:13:19.377 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-16 03:13:23.742 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-16 03:13:23.772 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-16 03:13:23.776 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-16 03:13:23.777 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-16 03:13:23.779 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-16 03:13:23.781 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 4 2 2015-09-16 03:19:53.467 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at com.aptana.core.util.StringUtil.split(StringUtil.java:754) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.hackEnvironment(NodeAppcCLI.java:375) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:326) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:260) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:238) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.android.core.AndroidSDKLocator.loadTiInfo(AndroidSDKLocator.java:836) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:226) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.debug.core 4 125 2015-09-16 03:20:28.497 !MESSAGE Error logged from Debug Core: !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at org.eclipse.debug.internal.core.LaunchManager.shutdown(LaunchManager.java:2380) at org.eclipse.debug.core.DebugPlugin.stop(DebugPlugin.java:650) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827) at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820) at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950) at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623) at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542) at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145) at org.eclipse.osgi.container.Module.doStop(Module.java:626) at org.eclipse.osgi.container.Module.stop(Module.java:488) at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160) at java.lang.Thread.run(Thread.java:744) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 03:20:28.497 !MESSAGE Terminate failed !ENTRY org.eclipse.core.jobs 2 2 2015-09-16 03:20:29.362 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-16 03:20:45.284 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-16 03:21:06.288 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-16 03:21:06.292 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 03:24:49.880 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 03:24:49.881 !MESSAGE Terminate failed !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 03:26:34.113 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 03:26:34.113 !MESSAGE Terminate failed !SESSION 2015-09-16 03:29:34.087 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-16 03:30:26.093 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-16 03:30:26.098 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-16 03:30:29.776 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-16 03:30:29.801 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-16 03:30:29.808 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-16 03:30:29.810 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-16 03:30:29.813 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-16 03:30:29.816 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.ios.ui 4 0 2015-09-16 03:33:04.562 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Terminate failed !STACK 1 org.eclipse.debug.core.DebugException: Terminate failed at org.eclipse.debug.core.Launch.terminate(Launch.java:258) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.terminateExistingLaunches(IOSInstallerLaunchConfigurationDelegate.java:245) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:102) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 org.eclipse.debug.core 4 5010 2015-09-16 03:33:04.565 !MESSAGE Terminate failed !SESSION 2015-09-18 14:58:33.732 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-18 14:58:37.578 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.core 4 0 2015-09-18 14:58:45.798 !MESSAGE (Build 4.1.0.1423009896) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:294) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-18 14:58:45.802 !MESSAGE (Build 4.1.0.1423009896) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 14:58:46.879 !MESSAGE (Build 4.1.0.1423009896) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 14:58:46.879 !MESSAGE (Build 4.1.0.1423009896) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-18 14:59:49.649 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-18 14:59:49.653 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-18 14:59:49.695 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-18 14:59:49.710 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-18 14:59:49.712 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-18 14:59:49.723 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-18 15:34:44.571 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-09-18 15:34:44.573 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.usage.internal.DefaultAnalyticsEventHandler$1 !SESSION 2015-09-18 15:37:20.063 ----------------------------------------------- eclipse.buildId=4.1.0.201507140915 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 15:37:50.265 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 15:37:50.270 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-18 15:37:58.108 !MESSAGE (Build 4.1.0.201507140915) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-18 15:37:58.127 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-18 15:37:58.130 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-18 15:37:58.131 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-18 15:37:58.133 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-18 15:37:58.134 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-18 15:37:58.135 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 15:39:05.589 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 15:39:05.589 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.core 4 1 2015-09-18 15:40:26.482 !MESSAGE sudo: a password is required !ENTRY com.aptana.core 0 0 2015-09-18 15:40:29.674 !MESSAGE !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 15:41:50.025 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 15:41:50.026 !MESSAGE (Build 4.1.0.201507140915) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 4 2 2015-09-18 15:43:06.727 !MESSAGE An internal error occurred during: "Update iOS info". !STACK 0 java.lang.ClassCastException: org.json.simple.JSONObject cannot be cast to org.json.simple.JSONArray at com.appcelerator.titanium.ios.core.IOSSDKLocator.loadSimulators(IOSSDKLocator.java:272) at com.appcelerator.titanium.ios.core.IOSSDKLocator.parseTiInfo(IOSSDKLocator.java:191) at com.appcelerator.titanium.ios.core.IOSSDKLocator.updateTiInfo(IOSSDKLocator.java:145) at com.appcelerator.titanium.ios.core.IOSSDKLocator.access$0(IOSSDKLocator.java:142) at com.appcelerator.titanium.ios.core.IOSSDKLocator$1.run(IOSSDKLocator.java:163) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SESSION 2015-09-18 15:50:46.866 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 15:51:15.926 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 15:51:15.930 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-18 15:51:57.409 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-18 15:51:57.412 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-18 15:51:57.421 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-18 15:51:57.422 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-18 15:51:57.423 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-18 15:51:57.425 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-09-18 15:52:18.475 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.IllegalArgumentException: Argument not valid) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:4422) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkParent(Widget.java:511) at org.eclipse.swt.widgets.Widget.(Widget.java:132) at org.eclipse.swt.widgets.Control.(Control.java:116) at org.eclipse.swt.widgets.Scrollable.(Scrollable.java:73) at org.eclipse.swt.widgets.Composite.(Composite.java:91) at org.eclipse.ui.forms.widgets.LayoutComposite.(LayoutComposite.java:24) at org.eclipse.ui.forms.widgets.FormToolkit.createComposite(FormToolkit.java:311) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:555) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) ... 23 more !SESSION 2015-09-18 15:56:11.706 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 15:58:12.033 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 15:58:12.037 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-18 15:58:56.234 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-18 15:58:56.261 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-18 15:58:56.264 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-18 15:58:56.265 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-18 15:58:56.267 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-18 15:58:56.268 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-18 15:58:56.270 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.js.core 4 0 2015-09-18 16:02:19.121 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !SESSION 2015-09-18 16:11:26.130 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:11:52.179 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:11:52.185 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-09-18 16:16:39.059 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:17:12.960 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:17:12.965 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-18 16:17:57.228 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-18 16:17:57.263 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-18 16:17:57.267 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-18 16:17:57.268 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-18 16:17:57.269 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-18 16:17:57.270 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-18 16:24:48.652 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:25:16.181 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:25:16.192 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-18 16:25:57.354 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-18 16:25:57.383 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-18 16:25:57.386 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-18 16:25:57.387 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-18 16:25:57.389 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-18 16:25:57.390 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-18 16:25:57.392 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-18 16:29:54.362 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:30:18.596 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.internal.theme.ThemeEngine.applyStyles(ThemeEngine.java:512) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$11.setClassnameAndId(PartRenderingEngine.java:1321) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.setCSSInfo(SWTPartRenderer.java:111) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.bindWidget(SWTPartRenderer.java:128) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.createWidget(StackRenderer.java:620) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveRenderer.processContents(PerspectiveRenderer.java:49) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:77) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:678) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:30:18.604 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.internal.theme.ThemeEngine.applyStyles(ThemeEngine.java:512) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$11.setClassnameAndId(PartRenderingEngine.java:1321) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.setCSSInfo(SWTPartRenderer.java:111) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.bindWidget(SWTPartRenderer.java:128) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.createWidget(StackRenderer.java:620) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveRenderer.processContents(PerspectiveRenderer.java:49) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:77) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:678) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:30:18.605 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.internal.theme.ThemeEngine.applyStyles(ThemeEngine.java:512) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$11.setClassnameAndId(PartRenderingEngine.java:1321) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.setCSSInfo(SWTPartRenderer.java:111) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.bindWidget(SWTPartRenderer.java:128) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.createWidget(StackRenderer.java:620) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveRenderer.processContents(PerspectiveRenderer.java:49) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:77) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:678) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:30:18.616 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.internal.theme.ThemeEngine.applyStyles(ThemeEngine.java:512) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$11.setClassnameAndId(PartRenderingEngine.java:1321) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.setCSSInfo(SWTPartRenderer.java:111) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.bindWidget(SWTPartRenderer.java:128) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.createWidget(StackRenderer.java:620) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveRenderer.processContents(PerspectiveRenderer.java:49) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:77) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:678) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:30:18.617 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.internal.theme.ThemeEngine.applyStyles(ThemeEngine.java:512) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$11.setClassnameAndId(PartRenderingEngine.java:1321) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.setCSSInfo(SWTPartRenderer.java:111) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.bindWidget(SWTPartRenderer.java:128) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.createWidget(StackRenderer.java:620) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveRenderer.processContents(PerspectiveRenderer.java:49) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:77) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:678) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:30:18.620 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.engine.CSSSWTApplyStylesListener$1.handleEvent(CSSSWTApplyStylesListener.java:32) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4189) at org.eclipse.swt.widgets.Display.runSkin(Display.java:4156) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:1200) at org.eclipse.swt.widgets.Composite.layout(Composite.java:710) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.forceLayout(SashRenderer.java:101) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:189) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:30:18.621 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.engine.CSSSWTApplyStylesListener$1.handleEvent(CSSSWTApplyStylesListener.java:32) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4189) at org.eclipse.swt.widgets.Display.runSkin(Display.java:4156) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:1200) at org.eclipse.swt.widgets.Composite.layout(Composite.java:710) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.forceLayout(SashRenderer.java:101) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:189) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.osgi 4 0 2015-09-18 16:30:18.651 !MESSAGE Application error !STACK 1 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.engine.CSSSWTApplyStylesListener$1.handleEvent(CSSSWTApplyStylesListener.java:32) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4189) at org.eclipse.swt.widgets.Display.runSkin(Display.java:4156) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:1200) at org.eclipse.swt.widgets.Composite.layout(Composite.java:710) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.forceLayout(SashRenderer.java:101) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:189) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.resources 4 2 2015-09-18 16:30:19.270 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.core.resources". !STACK 0 java.lang.NullPointerException at com.aptana.git.core.GitResourceListener.getGitRepositoryManager(GitResourceListener.java:146) at com.aptana.git.core.GitResourceListener.getRepo(GitResourceListener.java:160) at com.aptana.git.core.GitResourceListener.access$2(GitResourceListener.java:149) at com.aptana.git.core.GitResourceListener$ResourceDeltaVisitor.visit(GitResourceListener.java:272) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:69) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:56) at com.aptana.git.core.GitResourceListener.resourceChanged(GitResourceListener.java:81) at org.eclipse.core.internal.events.NotificationManager$1.run(NotificationManager.java:291) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.NotificationManager.notify(NotificationManager.java:285) at org.eclipse.core.internal.events.NotificationManager.broadcastChanges(NotificationManager.java:149) at org.eclipse.core.internal.resources.Workspace.broadcastPostChange(Workspace.java:378) at org.eclipse.core.internal.resources.Workspace.endOperation(Workspace.java:1498) at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:45) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SESSION 2015-09-18 16:31:01.754 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:31:15.512 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.internal.theme.ThemeEngine.applyStyles(ThemeEngine.java:512) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$11.setClassnameAndId(PartRenderingEngine.java:1321) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.setCSSInfo(SWTPartRenderer.java:111) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.bindWidget(SWTPartRenderer.java:128) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.createWidget(StackRenderer.java:620) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveRenderer.processContents(PerspectiveRenderer.java:49) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:77) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:678) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:31:15.518 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.internal.theme.ThemeEngine.applyStyles(ThemeEngine.java:512) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$11.setClassnameAndId(PartRenderingEngine.java:1321) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.setCSSInfo(SWTPartRenderer.java:111) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.bindWidget(SWTPartRenderer.java:128) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.createWidget(StackRenderer.java:620) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveRenderer.processContents(PerspectiveRenderer.java:49) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:77) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:678) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:31:15.519 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.internal.theme.ThemeEngine.applyStyles(ThemeEngine.java:512) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$11.setClassnameAndId(PartRenderingEngine.java:1321) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.setCSSInfo(SWTPartRenderer.java:111) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.bindWidget(SWTPartRenderer.java:128) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.createWidget(StackRenderer.java:620) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveRenderer.processContents(PerspectiveRenderer.java:49) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:77) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:678) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:31:15.520 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.internal.theme.ThemeEngine.applyStyles(ThemeEngine.java:512) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$11.setClassnameAndId(PartRenderingEngine.java:1321) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.setCSSInfo(SWTPartRenderer.java:111) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.bindWidget(SWTPartRenderer.java:128) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.createWidget(StackRenderer.java:620) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveRenderer.processContents(PerspectiveRenderer.java:49) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:77) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:678) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:31:15.522 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.internal.theme.ThemeEngine.applyStyles(ThemeEngine.java:512) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$11.setClassnameAndId(PartRenderingEngine.java:1321) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.setCSSInfo(SWTPartRenderer.java:111) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.bindWidget(SWTPartRenderer.java:128) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.createWidget(StackRenderer.java:620) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveRenderer.processContents(PerspectiveRenderer.java:49) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:103) at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:77) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:678) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:185) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:31:15.525 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.engine.CSSSWTApplyStylesListener$1.handleEvent(CSSSWTApplyStylesListener.java:32) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4189) at org.eclipse.swt.widgets.Display.runSkin(Display.java:4156) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:1200) at org.eclipse.swt.widgets.Composite.layout(Composite.java:710) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.forceLayout(SashRenderer.java:101) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:189) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2015-09-18 16:31:15.526 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.engine.CSSSWTApplyStylesListener$1.handleEvent(CSSSWTApplyStylesListener.java:32) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4189) at org.eclipse.swt.widgets.Display.runSkin(Display.java:4156) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:1200) at org.eclipse.swt.widgets.Composite.layout(Composite.java:710) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.forceLayout(SashRenderer.java:101) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:189) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.osgi 4 0 2015-09-18 16:31:15.566 !MESSAGE Application error !STACK 1 java.lang.ClassFormatError: Invalid pc in LineNumberTable in class file org/eclipse/e4/ui/workbench/renderers/swt/CTabRendering at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:568) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyTabRendererSWTHandler.applyCSSProperty(CSSPropertyTabRendererSWTHandler.java:60) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:40) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:722) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:520) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:405) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:354) at org.eclipse.e4.ui.css.swt.engine.CSSSWTApplyStylesListener$1.handleEvent(CSSSWTApplyStylesListener.java:32) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4189) at org.eclipse.swt.widgets.Display.runSkin(Display.java:4156) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:1200) at org.eclipse.swt.widgets.Composite.layout(Composite.java:710) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.forceLayout(SashRenderer.java:101) at org.eclipse.e4.ui.workbench.renderers.swt.SashRenderer.processContents(SashRenderer.java:189) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:69) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:674) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1078) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.resources 4 2 2015-09-18 16:31:16.205 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.core.resources". !STACK 0 java.lang.NullPointerException at com.aptana.git.core.GitResourceListener.getGitRepositoryManager(GitResourceListener.java:146) at com.aptana.git.core.GitResourceListener.getRepo(GitResourceListener.java:160) at com.aptana.git.core.GitResourceListener.access$2(GitResourceListener.java:149) at com.aptana.git.core.GitResourceListener$ResourceDeltaVisitor.visit(GitResourceListener.java:272) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:69) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:56) at com.aptana.git.core.GitResourceListener.resourceChanged(GitResourceListener.java:81) at org.eclipse.core.internal.events.NotificationManager$1.run(NotificationManager.java:291) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.NotificationManager.notify(NotificationManager.java:285) at org.eclipse.core.internal.events.NotificationManager.broadcastChanges(NotificationManager.java:149) at org.eclipse.core.internal.resources.Workspace.broadcastPostChange(Workspace.java:378) at org.eclipse.core.internal.resources.Workspace.endOperation(Workspace.java:1498) at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:45) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-18 16:31:16.538 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.usage.internal.DefaultAnalyticsEventHandler$1 !SESSION 2015-09-18 16:32:36.010 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:33:05.632 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:33:05.638 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-18 16:33:20.930 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-18 16:33:20.933 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-18 16:33:20.935 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-18 16:33:20.937 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-18 16:33:20.938 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-18 16:33:20.940 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:35:31.918 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.core.internal.jobs.ThreadJob.waitForRun(ThreadJob.java:235) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:197) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:92) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1697) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.updateProject(TiMobileMetadataLoader.java:98) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.run(TiMobileMetadataLoader.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:35:31.920 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:189) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:92) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1697) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.updateProject(TiMobileMetadataLoader.java:98) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.run(TiMobileMetadataLoader.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:35:31.920 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:189) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:92) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1697) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.updateProject(TiMobileMetadataLoader.java:98) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.run(TiMobileMetadataLoader.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:35:31.921 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:189) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:92) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1697) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.updateProject(TiMobileMetadataLoader.java:98) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.run(TiMobileMetadataLoader.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SESSION 2015-09-18 16:44:42.315 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:45:06.924 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:45:06.929 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:46:58.842 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:46:58.842 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:47:00.870 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.core.internal.jobs.ThreadJob.waitForRun(ThreadJob.java:235) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:197) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:92) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1697) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.updateProject(TiMobileMetadataLoader.java:98) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.run(TiMobileMetadataLoader.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:47:00.872 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:189) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:92) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1697) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.updateProject(TiMobileMetadataLoader.java:98) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.run(TiMobileMetadataLoader.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:47:00.872 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:189) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:92) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1697) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.updateProject(TiMobileMetadataLoader.java:98) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.run(TiMobileMetadataLoader.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:47:00.873 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:189) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:92) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1697) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.updateProject(TiMobileMetadataLoader.java:98) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.run(TiMobileMetadataLoader.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SESSION 2015-09-18 16:58:04.360 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:58:29.760 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 16:58:29.768 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-18 16:58:42.208 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-18 16:58:42.210 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-18 16:58:42.212 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-18 16:58:42.214 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-18 16:58:42.215 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-18 16:58:42.229 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-18 16:58:42.232 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.update.ui 4 0 2015-09-18 17:07:16.190 !MESSAGE !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.update.ui.wizard.InstallTitaniumSDKWizard$1.run(InstallTitaniumSDKWizard.java:60) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:07:34.662 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.core.internal.jobs.ThreadJob.waitForRun(ThreadJob.java:235) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:197) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:92) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1697) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.updateProject(TiMobileMetadataLoader.java:98) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.run(TiMobileMetadataLoader.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:07:34.668 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:189) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:92) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1697) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.updateProject(TiMobileMetadataLoader.java:98) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.run(TiMobileMetadataLoader.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:07:34.669 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:189) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:92) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1697) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.updateProject(TiMobileMetadataLoader.java:98) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.run(TiMobileMetadataLoader.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:07:34.669 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:189) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:92) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:290) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:118) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:2251) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1697) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.updateProject(TiMobileMetadataLoader.java:98) at com.appcelerator.titanium.core.mobile.TiMobileMetadataLoader.run(TiMobileMetadataLoader.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SESSION 2015-09-18 17:09:52.583 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-09-18 17:10:12.188 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 17:10:12.188 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 17:10:12.190 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 17:10:12.191 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.git.core 4 1 2015-09-18 17:10:20.079 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-18 17:10:20.079 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-18 17:10:20.079 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-18 17:10:20.080 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:10:20.389 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:10:20.391 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:10:51.447 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | ETIMEDOUT !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | ETIMEDOUT at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:10:51.448 !MESSAGE ERROR | ETIMEDOUT !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:10:52.149 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | ETIMEDOUT !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | ETIMEDOUT at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:10:52.149 !MESSAGE ERROR | ETIMEDOUT !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:11:03.732 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: /packages returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false,\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:11:03.733 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.Titanium360Manager.getPlan(Titanium360Manager.java:476) at com.appcelerator.titanium360.internal.core.TitaniumOrganization.getPlan(TitaniumOrganization.java:450) at com.appcelerator.titanium360.internal.core.TitaniumOrganization.isEligible(TitaniumOrganization.java:486) at com.appcelerator.titanium360.internal.core.Titanium360User$6.include(Titanium360User.java:500) at com.appcelerator.titanium360.internal.core.Titanium360User$6.include(Titanium360User.java:1) at com.aptana.core.util.CollectionsUtil.find(CollectionsUtil.java:192) at com.appcelerator.titanium360.internal.core.Titanium360User.isEligibleFor(Titanium360User.java:494) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider$1.include(AppceleratorModuleReleaseProvider.java:65) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider$1.include(AppceleratorModuleReleaseProvider.java:1) at com.aptana.core.util.CollectionsUtil.filter(CollectionsUtil.java:157) at com.aptana.core.util.CollectionsUtil.filter(CollectionsUtil.java:219) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider.getReleases(AppceleratorModuleReleaseProvider.java:61) at com.appcelerator.titanium.update.core.TitaniumReleaseProviderManager.getReleases(TitaniumReleaseProviderManager.java:192) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getTitaniumReleaseUpdates(TitaniumReleasesUpdater.java:991) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasModuleUpdates(TitaniumReleasesUpdater.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:203) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:11:03.733 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:11:03.734 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.Titanium360Manager.getPlan(Titanium360Manager.java:476) at com.appcelerator.titanium360.internal.core.TitaniumOrganization.getPlan(TitaniumOrganization.java:450) at com.appcelerator.titanium360.internal.core.TitaniumOrganization.isEligible(TitaniumOrganization.java:486) at com.appcelerator.titanium360.internal.core.Titanium360User$6.include(Titanium360User.java:500) at com.appcelerator.titanium360.internal.core.Titanium360User$6.include(Titanium360User.java:1) at com.aptana.core.util.CollectionsUtil.find(CollectionsUtil.java:192) at com.appcelerator.titanium360.internal.core.Titanium360User.isEligibleFor(Titanium360User.java:494) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider$1.include(AppceleratorModuleReleaseProvider.java:65) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider$1.include(AppceleratorModuleReleaseProvider.java:1) at com.aptana.core.util.CollectionsUtil.filter(CollectionsUtil.java:157) at com.aptana.core.util.CollectionsUtil.filter(CollectionsUtil.java:219) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider.getReleases(AppceleratorModuleReleaseProvider.java:61) at com.appcelerator.titanium.update.core.TitaniumReleaseProviderManager.getReleases(TitaniumReleaseProviderManager.java:192) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getTitaniumReleaseUpdates(TitaniumReleasesUpdater.java:991) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasModuleUpdates(TitaniumReleasesUpdater.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:203) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:11:03.734 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.aptana.js.core 4 0 2015-09-18 17:14:16.035 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:16:02.710 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appServiceLinks, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false,\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:16:02.711 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:484) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:16:02.711 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:16:02.711 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:484) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:16:02.712 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:16:35.228 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appServiceLinks, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false,\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:16:35.229 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:661) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:16:35.229 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:16:35.230 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:661) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:16:35.231 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !SESSION 2015-09-18 17:16:42.156 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-18 17:16:51.104 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-18 17:16:59.179 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 17:16:59.179 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 17:16:59.180 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 17:16:59.181 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:16:59.431 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:16:59.431 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-18 17:17:26.238 !MESSAGE (Build 4.3.0.1441219724) [ERROR] ERROR | ETIMEDOUT !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-18 17:17:40.685 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-18 17:17:40.709 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-18 17:17:40.713 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-18 17:17:40.714 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-18 17:17:40.715 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-18 17:17:40.716 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:18:04.323 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Requesting downloads json returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false,\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:18:04.323 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.Titanium360Manager.getDownloads(Titanium360Manager.java:434) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider.retrieveUpdates(AppceleratorModuleReleaseProvider.java:47) at com.appcelerator.titanium.update.core.AbstractTitaniumReleaseProvider.getReleases(AbstractTitaniumReleaseProvider.java:49) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider.getReleases(AppceleratorModuleReleaseProvider.java:59) at com.appcelerator.titanium.update.core.TitaniumReleaseProviderManager.getReleases(TitaniumReleaseProviderManager.java:192) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getTitaniumReleaseUpdates(TitaniumReleasesUpdater.java:991) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasModuleUpdates(TitaniumReleasesUpdater.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:203) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:18:04.324 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:18:04.325 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve user downloads. The following error occured: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:18:39.282 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Requesting downloads json returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false,\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:18:39.283 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.Titanium360Manager.getDownloads(Titanium360Manager.java:434) at com.appcelerator.titanium360.core.update.SoastaComponentReleaseProvider.retrieveUpdates(SoastaComponentReleaseProvider.java:50) at com.appcelerator.titanium.update.core.AbstractTitaniumReleaseProvider.getReleases(AbstractTitaniumReleaseProvider.java:49) at com.appcelerator.titanium360.core.update.SoastaComponentReleaseProvider.getReleases(SoastaComponentReleaseProvider.java:62) at com.appcelerator.titanium.update.core.TitaniumReleaseProviderManager.getReleases(TitaniumReleaseProviderManager.java:192) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getTitaniumReleaseUpdates(TitaniumReleasesUpdater.java:991) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasComponentUpdates(TitaniumReleasesUpdater.java:262) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:207) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:18:39.283 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:18:39.284 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve user downloads. The following error occured: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:19:25.823 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Requesting downloads json returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false,\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:19:25.823 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.Titanium360Manager.getDownloads(Titanium360Manager.java:434) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider.retrieveUpdates(AppceleratorModuleReleaseProvider.java:47) at com.appcelerator.titanium.update.core.AbstractTitaniumReleaseProvider.getReleases(AbstractTitaniumReleaseProvider.java:49) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider.getReleases(AppceleratorModuleReleaseProvider.java:59) at com.appcelerator.titanium.update.core.TitaniumReleaseProviderManager.getReleases(TitaniumReleaseProviderManager.java:192) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getTitaniumReleaseUpdates(TitaniumReleasesUpdater.java:991) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getAvailableUpdates(TitaniumReleasesUpdater.java:306) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.hasToInstallPackages(TitaniumUpdateStartup.java:191) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:151) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:19:25.824 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:19:25.825 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve user downloads. The following error occured: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:19:32.910 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appOrganization, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false,\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:19:32.911 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.isCurrentUserAuthorized(ThreeSixtyProject.java:602) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.get360State(Titanium360TiappContributor.java:534) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$5(Titanium360TiappContributor.java:512) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:482) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:19:32.912 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:19:32.912 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:20:07.527 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appServiceLinks, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false,\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:20:07.527 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:484) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:20:07.528 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:20:07.528 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:484) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:20:07.528 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !SESSION 2015-09-18 17:20:41.494 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-18 17:20:47.591 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:21:01.095 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:21:01.096 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-18 17:21:21.692 !MESSAGE (Build 4.3.0.1441219724) [ERROR] ERROR | ETIMEDOUT !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-18 17:21:35.087 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-18 17:21:35.114 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-18 17:21:35.118 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-18 17:21:35.119 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-18 17:21:35.120 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-18 17:21:35.122 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-18 17:21:35.123 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:21:58.588 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | ETIMEDOUT !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | ETIMEDOUT at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:21:58.589 !MESSAGE ERROR | ETIMEDOUT !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:22:01.046 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Requesting downloads json returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false,\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:22:01.047 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.Titanium360Manager.getDownloads(Titanium360Manager.java:434) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider.retrieveUpdates(AppceleratorModuleReleaseProvider.java:47) at com.appcelerator.titanium.update.core.AbstractTitaniumReleaseProvider.getReleases(AbstractTitaniumReleaseProvider.java:49) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider.getReleases(AppceleratorModuleReleaseProvider.java:59) at com.appcelerator.titanium.update.core.TitaniumReleaseProviderManager.getReleases(TitaniumReleaseProviderManager.java:192) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getTitaniumReleaseUpdates(TitaniumReleasesUpdater.java:991) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasModuleUpdates(TitaniumReleasesUpdater.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:203) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:22:01.047 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:22:01.048 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve user downloads. The following error occured: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:23:23.877 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appOrganization, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false,\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:23:23.878 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.isCurrentUserAuthorized(ThreeSixtyProject.java:602) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.get360State(Titanium360TiappContributor.java:534) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$5(Titanium360TiappContributor.java:512) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:482) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:23:23.878 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:23:23.879 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:24:04.318 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appServiceLinks, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false,\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:24:04.319 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:484) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:24:04.319 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:24:04.320 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:484) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:24:04.320 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY com.aptana.git.core 4 1 2015-09-18 17:24:11.336 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 17:24:11.336 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 17:24:11.337 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 17:24:11.337 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:24:40.518 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appServiceLinks, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:24:40.519 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:484) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:24:40.519 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:24:40.519 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2.run(Titanium360TiappContributor.java:484) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:24:40.520 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false} !ENTRY org.eclipse.ui 4 0 2015-09-18 17:24:40.520 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.IllegalArgumentException: Argument not valid) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:4422) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkParent(Widget.java:511) at org.eclipse.swt.widgets.Widget.(Widget.java:132) at org.eclipse.swt.widgets.Control.(Control.java:116) at org.eclipse.swt.widgets.Scrollable.(Scrollable.java:73) at org.eclipse.swt.widgets.Composite.(Composite.java:91) at org.eclipse.ui.forms.widgets.LayoutComposite.(LayoutComposite.java:24) at org.eclipse.ui.forms.widgets.FormToolkit.createComposite(FormToolkit.java:311) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:555) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) ... 23 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:24:56.062 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:24:56.065 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:25:17.112 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appServiceLinks, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:25:17.112 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:661) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:25:17.112 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-18 17:25:17.113 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getAppData(ThreeSixtyProject.java:393) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.lazyLoad(ThreeSixtyProject.java:377) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getServiceInstances(ThreeSixtyProject.java:220) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:661) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-18 17:25:17.114 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false} !SESSION 2015-09-18 17:28:25.866 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-18 17:28:30.150 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-18 17:28:37.972 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 17:28:37.973 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 17:28:37.974 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 17:28:37.975 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:28:38.258 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:28:38.259 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-18 17:28:53.356 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-18 17:28:53.379 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-18 17:28:53.382 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-18 17:28:53.383 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-18 17:28:53.384 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-18 17:28:53.385 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.js.core 4 0 2015-09-18 17:34:18.716 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:40:29.488 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:40:29.489 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:41:34.549 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:41:34.552 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:42:42.519 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:42:42.520 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:43:32.896 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:43:32.897 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:44:16.357 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:44:16.358 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:45:31.408 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:45:31.409 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:46:18.286 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:46:18.287 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:47:26.309 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:47:26.309 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:48:11.428 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:48:11.429 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:49:24.289 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:49:24.290 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-18 17:50:05.610 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:52:41.736 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:52:41.737 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:53:44.504 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:53:44.505 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:56:57.429 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:56:57.430 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:59:04.037 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:59:04.038 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:59:52.317 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 17:59:52.318 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:00:58.509 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:00:58.510 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:02:00.796 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:02:00.797 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:02:44.096 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:02:44.097 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:04:29.401 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:04:29.402 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:06:52.309 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:06:52.310 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:07:56.104 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:07:56.105 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:08:43.588 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:08:43.589 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:09:28.701 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:09:28.702 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:13:41.038 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:13:41.039 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:14:33.181 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:14:33.183 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:17:24.312 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:17:24.313 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:18:40.906 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:18:40.908 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-18 18:18:50.211 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:21:57.971 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:21:57.972 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:22:50.076 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:22:50.077 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:23:36.290 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:23:36.291 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:24:47.961 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:24:47.962 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:25:45.349 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 18:25:45.350 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-09-18 19:43:10.926 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 19:43:10.926 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 19:43:10.926 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 19:43:10.927 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.git.core 4 1 2015-09-18 20:11:59.344 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 20:11:59.344 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 20:11:59.345 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 20:11:59.345 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.js.core 4 0 2015-09-18 20:18:14.175 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.aptana.git.core 4 1 2015-09-18 20:22:39.007 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 20:22:39.007 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 20:22:39.008 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 20:22:39.008 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY org.eclipse.core.jobs 4 2 2015-09-18 20:23:53.448 !MESSAGE An internal error occurred during: "File Search". !STACK 0 org.eclipse.swt.SWTException: Invalid thread access at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:574) at org.eclipse.swt.custom.CTabItem.getControl(CTabItem.java:163) at org.eclipse.ui.part.MultiPageEditorPart.getControl(MultiPageEditorPart.java:607) at com.appcelerator.titanium.ui.ide.tiappEditor.TiAppEditor.getAdapter(TiAppEditor.java:379) at org.eclipse.search2.internal.ui.text.EditorAnnotationManager.createHighlighter(EditorAnnotationManager.java:182) at org.eclipse.search2.internal.ui.text.EditorAnnotationManager.addAnnotations(EditorAnnotationManager.java:241) at org.eclipse.search2.internal.ui.text.EditorAnnotationManager.searchResultChanged(EditorAnnotationManager.java:128) at org.eclipse.search.ui.text.AbstractTextSearchResult.fireChange(AbstractTextSearchResult.java:265) at org.eclipse.search.ui.text.AbstractTextSearchResult.addMatches(AbstractTextSearchResult.java:105) at org.eclipse.search.internal.ui.text.FileSearchQuery$TextSearchResultCollector.flushMatches(FileSearchQuery.java:147) at org.eclipse.search.internal.ui.text.FileSearchQuery$TextSearchResultCollector.acceptFile(FileSearchQuery.java:60) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:247) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.aptana.git.core 4 1 2015-09-18 20:25:26.937 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 20:25:26.937 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 20:25:26.938 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 20:25:26.939 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.git.core 4 1 2015-09-18 20:38:55.083 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 20:38:55.083 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 20:38:55.092 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-18 20:38:55.106 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.js.core 4 0 2015-09-18 20:39:23.493 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.aptana.js.core 4 0 2015-09-18 20:40:09.112 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !SESSION 2015-09-18 21:09:04.655 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-18 21:09:09.925 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 21:09:18.357 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-18 21:09:18.359 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-18 21:09:40.774 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-18 21:09:40.803 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-18 21:09:40.809 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-18 21:09:40.810 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-18 21:09:40.811 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-18 21:09:40.812 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui.workbench 4 2 2015-09-19 00:49:09.559 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-09-19 00:49:09.562 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-09-19 00:49:09.562 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 00:49:19.786 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-19 00:51:27.667 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 00:51:53.480 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 00:51:53.483 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-19 00:52:04.972 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-19 00:52:05.002 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-19 00:52:05.005 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-19 00:52:05.007 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-19 00:52:05.008 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-19 00:52:05.009 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-19 00:52:05.012 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-19 00:59:13.543 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 00:59:57.283 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 00:59:57.289 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 01:22:44.658 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-19 02:06:07.420 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -data /Users/James/Documents/Appcelerator_Studio_Workspace_newproject -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 02:06:29.402 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 02:06:29.406 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 02:10:46.706 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 02:10:46.708 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 03:27:01.467 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-19 10:23:49.195 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 10:24:22.207 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 10:24:22.209 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-09-19 10:43:05.007 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-19 10:43:05.008 !MESSAGE GC overhead limit exceeded !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at org.eclipse.core.runtime.Path.computeSegments(Path.java:488) at org.eclipse.core.runtime.Path.initialize(Path.java:602) at org.eclipse.core.runtime.Path.fromPortableString(Path.java:106) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.readOtherFiles(GitIndex.java:1056) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1033) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) !ENTRY org.eclipse.core.jobs 4 2 2015-09-19 10:46:49.524 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at org.eclipse.core.runtime.Path.fromOSString(Path.java:90) at com.aptana.git.core.model.GitRepository.gitDirPath(GitRepository.java:1798) at com.aptana.git.core.model.GitRepository.workingDirectory(GitRepository.java:630) at com.aptana.git.core.model.GitIndex.workingDirectory(GitIndex.java:771) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 10:47:03.670 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 10:47:03.671 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.usage.internal.DefaultAnalyticsEventHandler$1 !SESSION 2015-09-19 10:51:26.553 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 10:52:01.022 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 10:52:01.023 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-19 10:52:06.579 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-19 10:52:06.607 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-19 10:52:06.612 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-19 10:52:06.614 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-19 10:52:06.616 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-19 10:52:06.618 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-19 10:52:06.620 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui.workbench 4 2 2015-09-19 11:02:00.693 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-09-19 11:02:00.696 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-09-19 11:02:00.696 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 11:02:10.911 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-19 11:28:57.958 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 11:29:24.990 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 11:29:24.992 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-19 11:29:32.298 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-19 11:29:32.314 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-19 11:29:32.317 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-19 11:29:32.319 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-19 11:29:32.321 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-19 11:29:32.322 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-19 11:29:32.324 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-19 11:39:25.968 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 11:39:43.059 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 11:39:43.062 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-19 11:40:08.344 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-19 11:40:08.362 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-19 11:40:08.364 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-19 11:40:08.366 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-19 11:40:08.367 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-19 11:40:08.368 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-19 11:40:08.369 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-19 14:46:24.039 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-19 14:46:27.293 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 14:46:54.155 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 14:46:54.160 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-09-19 14:58:42.665 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-19 14:58:52.778 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 14:59:16.107 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 14:59:16.112 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-19 14:59:48.277 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Appcelerator Login required to continue ... ERROR | Login Required !STACK 1 org.eclipse.core.runtime.CoreException: Appcelerator Login required to continue ... ERROR | Login Required at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-19 14:59:48.278 !MESSAGE Appcelerator Login required to continue ... ERROR | Login Required !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-19 14:59:52.449 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Appcelerator Login required to continue ... ERROR | Login Required !STACK 1 org.eclipse.core.runtime.CoreException: Appcelerator Login required to continue ... ERROR | Login Required at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-19 14:59:52.449 !MESSAGE Appcelerator Login required to continue ... ERROR | Login Required !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-19 15:00:40.594 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Requesting downloads json returned with unexpected response {"success":false,"description":"Appcelerator Login required to continue ...\n\nInvalid Appcelerator ID and password combination.\n\nAppcelerator Login required to continue ...\n\n{\"modules\":[{\"oses\":[\"linux\",\"win32\",\"osx\"],\"platforms\":[\"iphone\",\"android\"],\"required\":true,\"partner_id\":\"C62F568D148845509E7E9D8317A24462\",\"partner_name\":\"crittercism\",\"name\":\"Appcelerator Performance Module\",\"description\":\"Used to enable the Appcelerator Performance service. Appcelerator Performance service allows you to identify and troubleshoot crashes in your mobile applications.\",\"id\":\"com.appcelerator.apm\",\"guid\":\"ec36d909-befa-4ca1-b518-1e3f152ead61\",\"version\":\"1.1.1\",\"url\":\"http://s3-us-west-2.amazonaws.com/appcelerator-modules/com.appcelerator.apm-ios_android-1.1.1.zip\",\"min_mobilesdk_version\":\"3.1.1\"}],\"components\":[{\"id\":\"com.soasta.touchtest.matt\",\"name\":\"Appcelerator Test Module\",\"description\":\"Used to enable the Appcelerator Test service. Appcelerator Test service allows you to easily automate functional testing for mobile applications.\",\"oses\":[\"linux\",\"win32\",\"osx\"],\"platforms\":[\"iPhone\",\"android\"],\"version\":\"7732.313\",\"url\":\"http://appctest-2.appcelerator.com/concerto/downloads/mobile/MakeAppTouchTestable.zip\",\"min_mobilesdk_version\":\"3.1.1\",\"required\":true,\"partner_id\":\"B70300B47FCF40FB83F9F870B7BF77E8\",\"partner_name\":\"soasta\"}]}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-19 15:00:40.595 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Appcelerator Login required to continue ... Invalid Appcelerator ID and password combination. Appcelerator Login required to continue ... {"modules":[{"oses":["linux","win32","osx"],"platforms":["iphone","android"],"required":true,"partner_id":"C62F568D148845509E7E9D8317A24462","partner_name":"crittercism","name":"Appcelerator Performance Module","description":"Used to enable the Appcelerator Performance service. Appcelerator Performance service allows you to identify and troubleshoot crashes in your mobile applications.","id":"com.appcelerator.apm","guid":"ec36d909-befa-4ca1-b518-1e3f152ead61","version":"1.1.1","url":"http://s3-us-west-2.amazonaws.com/appcelerator-modules/com.appcelerator.apm-ios_android-1.1.1.zip","min_mobilesdk_version":"3.1.1"}],"components":[{"id":"com.soasta.touchtest.matt","name":"Appcelerator Test Module","description":"Used to enable the Appcelerator Test service. Appcelerator Test service allows you to easily automate functional testing for mobile applications.","oses":["linux","win32","osx"],"platforms":["iPhone","android"],"version":"7732.313","url":"http://appctest-2.appcelerator.com/concerto/downloads/mobile/MakeAppTouchTestable.zip","min_mobilesdk_version":"3.1.1","required":true,"partner_id":"B70300B47FCF40FB83F9F870B7BF77E8","partner_name":"soasta"}]} !STACK 1 org.eclipse.core.runtime.CoreException: Appcelerator Login required to continue ... Invalid Appcelerator ID and password combination. Appcelerator Login required to continue ... {"modules":[{"oses":["linux","win32","osx"],"platforms":["iphone","android"],"required":true,"partner_id":"C62F568D148845509E7E9D8317A24462","partner_name":"crittercism","name":"Appcelerator Performance Module","description":"Used to enable the Appcelerator Performance service. Appcelerator Performance service allows you to identify and troubleshoot crashes in your mobile applications.","id":"com.appcelerator.apm","guid":"ec36d909-befa-4ca1-b518-1e3f152ead61","version":"1.1.1","url":"http://s3-us-west-2.amazonaws.com/appcelerator-modules/com.appcelerator.apm-ios_android-1.1.1.zip","min_mobilesdk_version":"3.1.1"}],"components":[{"id":"com.soasta.touchtest.matt","name":"Appcelerator Test Module","description":"Used to enable the Appcelerator Test service. Appcelerator Test service allows you to easily automate functional testing for mobile applications.","oses":["linux","win32","osx"],"platforms":["iPhone","android"],"version":"7732.313","url":"http://appctest-2.appcelerator.com/concerto/downloads/mobile/MakeAppTouchTestable.zip","min_mobilesdk_version":"3.1.1","required":true,"partner_id":"B70300B47FCF40FB83F9F870B7BF77E8","partner_name":"soasta"}]} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.Titanium360Manager.getDownloads(Titanium360Manager.java:434) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider.retrieveUpdates(AppceleratorModuleReleaseProvider.java:47) at com.appcelerator.titanium.update.core.AbstractTitaniumReleaseProvider.getReleases(AbstractTitaniumReleaseProvider.java:49) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider.getReleases(AppceleratorModuleReleaseProvider.java:59) at com.appcelerator.titanium.update.core.TitaniumReleaseProviderManager.getReleases(TitaniumReleaseProviderManager.java:192) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getTitaniumReleaseUpdates(TitaniumReleasesUpdater.java:991) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasModuleUpdates(TitaniumReleasesUpdater.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:203) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-19 15:00:40.595 !MESSAGE Appcelerator Login required to continue ... Invalid Appcelerator ID and password combination. Appcelerator Login required to continue ... {"modules":[{"oses":["linux","win32","osx"],"platforms":["iphone","android"],"required":true,"partner_id":"C62F568D148845509E7E9D8317A24462","partner_name":"crittercism","name":"Appcelerator Performance Module","description":"Used to enable the Appcelerator Performance service. Appcelerator Performance service allows you to identify and troubleshoot crashes in your mobile applications.","id":"com.appcelerator.apm","guid":"ec36d909-befa-4ca1-b518-1e3f152ead61","version":"1.1.1","url":"http://s3-us-west-2.amazonaws.com/appcelerator-modules/com.appcelerator.apm-ios_android-1.1.1.zip","min_mobilesdk_version":"3.1.1"}],"components":[{"id":"com.soasta.touchtest.matt","name":"Appcelerator Test Module","description":"Used to enable the Appcelerator Test service. Appcelerator Test service allows you to easily automate functional testing for mobile applications.","oses":["linux","win32","osx"],"platforms":["iPhone","android"],"version":"7732.313","url":"http://appctest-2.appcelerator.com/concerto/downloads/mobile/MakeAppTouchTestable.zip","min_mobilesdk_version":"3.1.1","required":true,"partner_id":"B70300B47FCF40FB83F9F870B7BF77E8","partner_name":"soasta"}]} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-19 15:00:40.596 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve user downloads. The following error occured: Appcelerator Login required to continue ... Invalid Appcelerator ID and password combination. Appcelerator Login required to continue ... {"modules":[{"oses":["linux","win32","osx"],"platforms":["iphone","android"],"required":true,"partner_id":"C62F568D148845509E7E9D8317A24462","partner_name":"crittercism","name":"Appcelerator Performance Module","description":"Used to enable the Appcelerator Performance service. Appcelerator Performance service allows you to identify and troubleshoot crashes in your mobile applications.","id":"com.appcelerator.apm","guid":"ec36d909-befa-4ca1-b518-1e3f152ead61","version":"1.1.1","url":"http://s3-us-west-2.amazonaws.com/appcelerator-modules/com.appcelerator.apm-ios_android-1.1.1.zip","min_mobilesdk_version":"3.1.1"}],"components":[{"id":"com.soasta.touchtest.matt","name":"Appcelerator Test Module","description":"Used to enable the Appcelerator Test service. Appcelerator Test service allows you to easily automate functional testing for mobile applications.","oses":["linux","win32","osx"],"platforms":["iPhone","android"],"version":"7732.313","url":"http://appctest-2.appcelerator.com/concerto/downloads/mobile/MakeAppTouchTestable.zip","min_mobilesdk_version":"3.1.1","required":true,"partner_id":"B70300B47FCF40FB83F9F870B7BF77E8","partner_name":"soasta"}]} !ENTRY org.eclipse.core.jobs 4 2 2015-09-19 15:06:31.431 !MESSAGE An internal error occurred during: "Searching for local changes". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.toCharArray(String.java:2753) at org.eclipse.core.internal.filesystem.local.unix.UnixFileNatives.fileNameToBytes(UnixFileNatives.java:170) at org.eclipse.core.internal.filesystem.local.unix.UnixFileNatives.fetchFileInfo(UnixFileNatives.java:72) at org.eclipse.core.internal.filesystem.local.unix.UnixFileHandler.fetchFileInfo(UnixFileHandler.java:27) at org.eclipse.core.internal.filesystem.local.LocalFileNativesManager.fetchFileInfo(LocalFileNativesManager.java:77) at org.eclipse.core.internal.filesystem.local.LocalFile.fetchInfo(LocalFile.java:150) at org.eclipse.core.filesystem.provider.FileStore.fetchInfo(FileStore.java:280) at org.eclipse.core.filesystem.provider.FileStore.childInfos(FileStore.java:109) at org.eclipse.core.internal.localstore.UnifiedTree.getLocalList(UnifiedTree.java:346) at org.eclipse.core.internal.localstore.UnifiedTree.addChildren(UnifiedTree.java:138) at org.eclipse.core.internal.localstore.UnifiedTree.addNodeChildrenToQueue(UnifiedTree.java:244) at org.eclipse.core.internal.localstore.UnifiedTree.accept(UnifiedTree.java:110) at org.eclipse.core.internal.localstore.FileSystemResourceManager.isSynchronized(FileSystemResourceManager.java:716) at org.eclipse.core.internal.resources.Resource.isSynchronized(Resource.java:1543) at org.eclipse.core.internal.refresh.PollingMonitor.poll(PollingMonitor.java:173) at org.eclipse.core.internal.refresh.PollingMonitor.run(PollingMonitor.java:126) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-19 15:06:31.433 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at org.eclipse.core.runtime.Path.removeLastSegments(Path.java:836) at com.aptana.git.core.model.GitRepository.workingDirectory(GitRepository.java:632) at com.aptana.git.core.model.GitIndex.workingDirectory(GitIndex.java:771) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-19 15:06:31.433 !MESSAGE An internal error occurred during: "Update iOS info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.util.TreeMap.put(TreeMap.java:569) at java.util.AbstractMap.putAll(AbstractMap.java:273) at java.util.TreeMap.putAll(TreeMap.java:322) at java.util.TreeMap.(TreeMap.java:180) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:129) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:332) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:260) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:238) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.ios.core.IOSSDKLocator.loadTiInfo(IOSSDKLocator.java:603) at com.appcelerator.titanium.ios.core.IOSSDKLocator.updateTiInfo(IOSSDKLocator.java:145) at com.appcelerator.titanium.ios.core.IOSSDKLocator.access$0(IOSSDKLocator.java:143) at com.appcelerator.titanium.ios.core.IOSSDKLocator$1.run(IOSSDKLocator.java:164) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 15:06:43.936 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-19 15:07:56.892 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 15:08:20.513 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 15:08:20.516 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-09-19 15:17:22.977 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-19 15:17:26.516 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 15:17:34.224 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 15:17:34.225 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-19 15:17:55.072 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-19 15:17:55.087 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-19 15:17:55.091 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-19 15:17:55.092 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-19 15:17:55.094 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-19 15:17:55.095 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-19 15:17:55.096 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 16:56:00.869 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-19 17:33:43.647 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 17:34:07.843 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 17:34:07.844 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-19 17:34:14.523 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-19 17:34:14.559 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-19 17:34:14.562 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-19 17:34:14.564 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-19 17:34:14.566 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-19 17:34:14.568 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-19 17:34:14.569 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-09-19 17:56:20.309 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.OutOfMemoryError: GC overhead limit exceeded) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.OutOfMemoryError: GC overhead limit exceeded at org.eclipse.swt.widgets.Widget.setNeedsDisplay(Widget.java:1849) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5758) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSControl.setEnabled(NSControl.java:91) at org.eclipse.swt.widgets.ToolItem.enableWidget(ToolItem.java:510) at org.eclipse.swt.widgets.ToolItem.setEnabled(ToolItem.java:988) at org.eclipse.jface.action.ActionContributionItem.update(ActionContributionItem.java:832) at org.eclipse.jface.action.ActionContributionItem$3.run(ActionContributionItem.java:183) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) !ENTRY org.eclipse.ui 4 0 2015-09-19 17:59:09.871 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded !ENTRY org.eclipse.core.jobs 4 2 2015-09-19 17:59:09.872 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.util.Arrays.copyOfRange(Arrays.java:2694) at java.lang.String.(String.java:203) at java.lang.String.substring(String.java:1913) at org.eclipse.core.runtime.Path.computeSegments(Path.java:488) at org.eclipse.core.runtime.Path.initialize(Path.java:602) at org.eclipse.core.runtime.Path.(Path.java:163) at org.eclipse.core.runtime.Path.fromOSString(Path.java:90) at com.aptana.git.core.model.GitRepository.gitDirPath(GitRepository.java:1798) at com.aptana.git.core.model.GitRepository.workingDirectory(GitRepository.java:630) at com.aptana.git.core.model.GitIndex.workingDirectory(GitIndex.java:771) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 17:59:16.673 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.appcelerator.titanium.android.core.AndroidSDKLocator$1 !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 17:59:16.673 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-19 17:59:42.019 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 17:59:57.715 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 17:59:57.716 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-19 18:00:16.171 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-19 18:00:16.173 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-19 18:00:16.195 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-19 18:00:16.198 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-19 18:00:16.256 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-19 18:00:16.258 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-19 18:00:16.259 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 18:05:57.166 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-19 18:35:53.149 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 18:36:21.585 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 18:36:21.587 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-19 18:36:27.757 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-19 18:36:27.776 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-19 18:36:27.779 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-19 18:36:27.782 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-19 18:36:27.784 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-19 18:36:27.786 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-19 18:36:27.788 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 19:02:09.045 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-19 19:07:12.361 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 19:07:37.725 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-19 19:07:37.730 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-19 19:07:43.591 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-19 19:07:43.618 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-19 19:07:43.621 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-19 19:07:43.623 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-19 19:07:43.625 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-19 19:07:43.631 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-19 19:07:43.633 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-19 19:23:47.285 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-20 00:18:51.748 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 00:19:17.868 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 00:19:17.870 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-20 00:19:25.853 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-20 00:19:25.877 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-20 00:19:25.883 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-20 00:19:25.885 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-20 00:19:25.886 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-20 00:19:25.889 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-20 00:19:25.891 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 00:20:58.100 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 00:20:58.101 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 4 2 2015-09-20 00:26:10.161 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at org.eclipse.core.runtime.Path.computeSegments(Path.java:488) at org.eclipse.core.runtime.Path.initialize(Path.java:602) at org.eclipse.core.runtime.Path.(Path.java:163) at org.eclipse.core.runtime.Path.fromOSString(Path.java:90) at com.aptana.git.core.model.GitRepository.gitDirPath(GitRepository.java:1798) at com.aptana.git.core.model.GitRepository.workingDirectory(GitRepository.java:630) at com.aptana.git.core.model.GitIndex.workingDirectory(GitIndex.java:771) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-20 00:26:10.163 !MESSAGE An internal error occurred during: "Searching for local changes". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.io.UnixFileSystem.resolve(UnixFileSystem.java:105) at java.io.File.(File.java:367) at org.eclipse.core.internal.filesystem.local.LocalFile.getChild(LocalFile.java:177) at org.eclipse.core.internal.localstore.FileStoreRoot.createStore(FileStoreRoot.java:98) at org.eclipse.core.internal.localstore.FileSystemResourceManager.getStore(FileSystemResourceManager.java:517) at org.eclipse.core.internal.resources.Resource.getStore(Resource.java:1287) at org.eclipse.core.internal.localstore.UnifiedTree.addRootToQueue(UnifiedTree.java:261) at org.eclipse.core.internal.localstore.UnifiedTree.initializeQueue(UnifiedTree.java:376) at org.eclipse.core.internal.localstore.UnifiedTree.accept(UnifiedTree.java:98) at org.eclipse.core.internal.localstore.FileSystemResourceManager.isSynchronized(FileSystemResourceManager.java:716) at org.eclipse.core.internal.resources.Resource.isSynchronized(Resource.java:1543) at org.eclipse.core.internal.refresh.PollingMonitor.poll(PollingMonitor.java:173) at org.eclipse.core.internal.refresh.PollingMonitor.run(PollingMonitor.java:132) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-20 00:26:18.407 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-20 00:29:41.187 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 00:30:16.919 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 00:30:16.923 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-20 00:30:23.389 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-20 00:30:23.417 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-20 00:30:23.420 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-20 00:30:23.422 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-20 00:30:23.424 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-20 00:30:23.425 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-20 00:30:23.428 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-20 00:37:46.761 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-09-20 00:38:05.794 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-20 00:38:05.795 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-20 00:38:05.796 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-20 00:38:05.797 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 00:38:05.984 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 00:38:05.984 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-20 00:38:24.112 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-20 00:38:24.135 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-20 00:38:24.140 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-20 00:38:24.141 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-20 00:38:24.142 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-20 00:38:24.143 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-20 00:38:24.145 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-20 00:41:17.520 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appOrganization, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ETIMEDOUT\",\"connect\":false,\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-09-20 00:41:17.521 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.launch.contributor.VPCDeployTypeLaunchValidator.validate(VPCDeployTypeLaunchValidator.java:63) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.validateLaunchContributors(NodeAppcCLI.java:635) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:620) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:595) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.build(IOSNodeJSCommandsHelper.java:278) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.installOnDevice(IOSNodeJSCommandsHelper.java:130) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:112) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-09-20 00:41:17.522 !MESSAGE ERROR | {"code":"ETIMEDOUT","connect":false,"success":false} !ENTRY org.eclipse.core.jobs 2 2 2015-09-20 01:59:32.441 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-20 02:13:33.344 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 02:14:20.700 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 02:14:20.702 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-20 02:14:27.800 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-20 02:14:27.826 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-20 02:14:27.830 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-20 02:14:27.833 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-20 02:14:27.836 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-20 02:14:27.838 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-20 02:14:27.839 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 1 2015-09-20 02:30:12.939 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-20 02:30:12.939 !MESSAGE GC overhead limit exceeded !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at org.eclipse.core.runtime.Path.computeSegments(Path.java:488) at org.eclipse.core.runtime.Path.initialize(Path.java:602) at org.eclipse.core.runtime.Path.fromPortableString(Path.java:106) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.readOtherFiles(GitIndex.java:1056) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1033) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) !ENTRY com.aptana.js.core 4 0 2015-09-20 03:54:58.235 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Source type cannot be null or empty !STACK 0 java.lang.IllegalArgumentException: Source type cannot be null or empty at com.appcelerator.titanium.alloy.core.js.inferencing.AlloyJSAliasResolver.resolve(AlloyJSAliasResolver.java:26) at com.aptana.js.internal.core.inferencing.AliasResolverFactory.resolve(AliasResolverFactory.java:100) at com.aptana.js.core.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:704) at com.aptana.js.core.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.editor.js.contentassist.ParseUtil.getReceiverTypeNames(ParseUtil.java:451) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:56) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.aptana.js.core 4 0 2015-09-20 03:54:58.241 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Source type cannot be null or empty !STACK 0 java.lang.IllegalArgumentException: Source type cannot be null or empty at com.appcelerator.titanium.alloy.core.js.inferencing.AlloyJSAliasResolver.resolve(AlloyJSAliasResolver.java:26) at com.aptana.js.internal.core.inferencing.AliasResolverFactory.resolve(AliasResolverFactory.java:100) at com.aptana.js.core.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:704) at com.aptana.js.core.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.editor.js.contentassist.ParseUtil.getReceiverTypeNames(ParseUtil.java:451) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:56) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.jobs 2 2 2015-09-20 04:27:37.318 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-20 04:31:50.686 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 04:32:11.699 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 04:32:11.718 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-20 04:32:23.187 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-20 04:32:23.211 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-20 04:32:23.215 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-20 04:32:23.217 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-20 04:32:23.218 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-20 04:32:23.220 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-20 04:32:23.222 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-20 04:39:25.908 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-20 04:39:33.525 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 04:39:41.185 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 04:39:41.186 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-20 04:39:52.301 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-20 04:39:52.323 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-20 04:39:52.329 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-20 04:39:52.330 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-20 04:39:52.332 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-20 04:39:52.333 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-20 04:39:52.335 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-20 10:30:56.997 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-20 13:01:00.341 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 13:01:35.333 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 13:01:35.338 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-20 13:01:39.872 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-20 13:01:39.885 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-20 13:01:39.902 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-20 13:01:39.904 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-20 13:01:39.906 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-20 13:01:39.907 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-20 13:01:39.909 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-20 13:09:39.811 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-20 13:09:43.291 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 13:10:01.678 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 13:10:01.684 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-20 13:10:31.602 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-20 13:10:31.636 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-20 13:10:31.640 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-20 13:10:31.641 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-20 13:10:31.643 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-20 13:10:31.645 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-20 13:10:31.647 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-20 15:11:28.286 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-20 16:11:13.053 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-09-20 16:12:09.387 !MESSAGE (Build 4.3.0.1441219724) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-20 16:12:09.390 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 16:12:46.549 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 16:12:46.553 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-20 16:12:50.259 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-20 16:12:50.283 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-20 16:12:50.287 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-20 16:12:50.289 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-20 16:12:50.291 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-20 16:12:50.293 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-20 16:12:50.295 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-20 16:24:42.160 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-09-20 16:24:57.313 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-20 16:24:57.313 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-20 16:24:57.313 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-20 16:24:57.313 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 16:24:58.490 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-20 16:24:58.492 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-20 16:25:08.170 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-20 16:25:08.197 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-20 16:25:08.202 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-20 16:25:08.204 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-20 16:25:08.205 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-20 16:25:08.207 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-20 16:25:08.209 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 1 2015-09-20 16:37:29.756 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-20 16:37:29.756 !MESSAGE GC overhead limit exceeded !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at org.eclipse.core.runtime.Path.computeSegments(Path.java:488) at org.eclipse.core.runtime.Path.initialize(Path.java:602) at org.eclipse.core.runtime.Path.fromPortableString(Path.java:106) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.readOtherFiles(GitIndex.java:1056) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1033) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) !ENTRY org.eclipse.core.jobs 4 2 2015-09-20 17:25:20.130 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:442) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:312) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:227) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-20 17:25:24.390 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-21 00:29:20.713 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-09-21 00:29:37.688 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-21 00:29:37.688 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-21 00:29:37.688 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-21 00:29:37.688 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-21 00:29:37.737 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-21 00:29:37.738 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-21 00:29:48.122 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-21 00:29:48.145 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-21 00:29:48.149 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-21 00:29:48.151 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-21 00:29:48.153 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-21 00:29:48.155 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-21 00:29:48.157 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-21 00:37:26.899 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-21 00:37:31.307 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-21 00:37:39.224 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-21 00:37:39.226 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-09-21 02:59:49.545 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-21 17:16:52.425 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-09-21 17:17:06.848 !MESSAGE (Build 4.3.0.1441219724) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-21 17:17:06.852 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-21 17:17:35.065 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-21 17:17:35.070 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-09-21 17:24:46.924 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at org.eclipse.swt.widgets.Display.addPool(Display.java:511) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3653) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.jobs 2 2 2015-09-21 17:24:53.528 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-21 17:29:46.573 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-21 17:30:10.026 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-21 17:30:10.029 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-21 17:31:49.300 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-21 17:31:49.301 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-09-21 17:43:04.612 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-22 01:28:17.069 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-09-22 01:28:40.778 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-22 01:28:40.778 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-22 01:28:40.778 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-22 01:28:40.778 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 01:28:41.382 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 01:28:41.385 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-22 01:28:47.898 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-22 01:28:47.903 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-22 01:28:47.926 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-22 01:28:47.929 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-22 01:28:47.931 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-22 01:28:47.933 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-22 01:28:47.935 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-22 01:28:47.937 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-22 01:35:57.373 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-22 01:36:01.101 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 01:36:09.012 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 01:36:09.013 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-22 02:17:47.648 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.aptana.js.core 4 0 2015-09-22 02:22:47.504 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.core.jobs 4 2 2015-09-22 03:16:01.045 !MESSAGE An internal error occurred during: "Update iOS info". !STACK 0 java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOfRange(Arrays.java:2694) at java.lang.String.(String.java:203) at java.lang.String.substring(String.java:1913) at java.lang.String.trim(String.java:2732) at com.aptana.core.util.StringUtil.isEmpty(StringUtil.java:286) at com.aptana.core.util.ProcessStatus.generateMessage(ProcessStatus.java:39) at com.aptana.core.util.ProcessStatus.(ProcessStatus.java:31) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:397) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.ios.core.IOSSDKLocator.loadTiInfo(IOSSDKLocator.java:603) at com.appcelerator.titanium.ios.core.IOSSDKLocator.updateTiInfo(IOSSDKLocator.java:145) at com.appcelerator.titanium.ios.core.IOSSDKLocator.access$0(IOSSDKLocator.java:143) at com.appcelerator.titanium.ios.core.IOSSDKLocator$1.run(IOSSDKLocator.java:164) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-22 03:16:13.534 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-22 03:16:57.175 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 03:17:16.290 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 03:17:16.294 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-22 03:17:21.106 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-22 03:17:21.119 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-22 03:17:21.134 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-22 03:17:21.135 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-22 03:17:21.136 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-22 03:17:21.139 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-22 03:17:21.142 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-22 03:17:21.144 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-22 03:21:20.503 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-22 13:04:45.575 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 13:05:06.143 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 13:05:06.154 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-22 13:05:11.603 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-22 13:05:11.605 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-22 13:05:11.631 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-22 13:05:11.634 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-22 13:05:11.636 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-22 13:05:11.638 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-22 13:05:11.640 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-22 13:05:11.642 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-22 13:12:17.484 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 13:12:35.006 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 13:12:35.011 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-22 13:12:39.898 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-22 13:12:39.922 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-22 13:12:39.927 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-22 13:12:39.929 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-22 13:12:39.931 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-22 13:12:39.935 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-22 13:12:39.937 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-22 13:12:39.940 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 4 2 2015-09-22 13:21:52.456 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.StringCoding.encode(StringCoding.java:338) at java.lang.StringCoding.encode(StringCoding.java:387) at java.lang.String.getBytes(String.java:956) at java.lang.ProcessEnvironment$Variable.valueOfQueryOnly(ProcessEnvironment.java:165) at java.lang.ProcessEnvironment$Variable.valueOf(ProcessEnvironment.java:170) at java.lang.ProcessEnvironment$StringEnvironment.put(ProcessEnvironment.java:241) at java.lang.ProcessEnvironment$StringEnvironment.put(ProcessEnvironment.java:220) at java.util.AbstractMap.putAll(AbstractMap.java:273) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:130) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:332) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:260) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:238) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.android.core.AndroidSDKLocator.loadTiInfo(AndroidSDKLocator.java:836) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:226) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-22 13:21:52.458 !MESSAGE An internal error occurred during: "Searching for local changes". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at org.eclipse.core.internal.localstore.FileSystemResourceManager.isSynchronized(FileSystemResourceManager.java:716) at org.eclipse.core.internal.resources.Resource.isSynchronized(Resource.java:1543) at org.eclipse.core.internal.refresh.PollingMonitor.poll(PollingMonitor.java:173) at org.eclipse.core.internal.refresh.PollingMonitor.run(PollingMonitor.java:132) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-22 13:21:59.482 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-22 13:22:13.360 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 13:22:33.892 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 13:22:33.894 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-22 13:22:37.917 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-22 13:22:37.941 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-22 13:22:37.948 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-22 13:22:37.949 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-22 13:22:37.951 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-22 13:22:37.952 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-22 13:22:37.954 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-22 13:22:37.956 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-22 14:29:42.375 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-22 14:33:37.886 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 14:33:59.228 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 14:33:59.233 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-22 14:34:04.239 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-22 14:34:04.241 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-22 14:34:04.267 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-22 14:34:04.281 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-22 14:34:04.289 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-22 14:34:04.292 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-22 14:34:04.297 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-22 14:34:04.307 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-22 15:44:57.464 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-22 15:45:58.282 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 15:46:18.657 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 15:46:18.662 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-22 15:46:23.892 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-22 15:46:23.916 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-22 15:46:23.923 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-22 15:46:23.925 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-22 15:46:23.926 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-22 15:46:23.928 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-22 15:46:23.929 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-22 15:46:23.930 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-22 15:54:24.218 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-22 15:54:28.399 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 15:54:45.701 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 15:54:45.706 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-22 15:54:51.095 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-22 15:54:51.124 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-22 15:54:51.129 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-22 15:54:51.131 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-22 15:54:51.133 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-22 15:54:51.134 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-22 15:54:51.136 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-22 15:54:51.138 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.js.core 4 0 2015-09-22 17:51:43.524 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.core.jobs 4 2 2015-09-22 17:53:14.917 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:442) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:312) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:227) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-22 17:53:22.828 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-22 23:50:14.165 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 23:50:40.563 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-22 23:50:40.569 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-22 23:50:52.276 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-22 23:50:52.295 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-22 23:50:52.298 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-22 23:50:52.299 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-22 23:50:52.301 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-22 23:50:52.303 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-22 23:50:52.304 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-22 23:50:52.306 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 4 2 2015-09-22 23:58:00.045 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.util.regex.Pattern.compile(Pattern.java:1022) at com.aptana.core.util.VersionUtil.parseVersion(VersionUtil.java:219) at com.appcelerator.titanium.android.core.AndroidSDKEntity.compareTo(AndroidSDKEntity.java:128) at com.appcelerator.titanium.core.mobile.SDKEntity.compareTo(SDKEntity.java:1) at java.util.ComparableTimSort.binarySort(ComparableTimSort.java:232) at java.util.ComparableTimSort.sort(ComparableTimSort.java:158) at java.util.ComparableTimSort.sort(ComparableTimSort.java:146) at java.util.Arrays.sort(Arrays.java:472) at java.util.Collections.sort(Collections.java:155) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:421) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:227) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-22 23:58:00.047 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at java.io.UnixFileSystem.fromURIPath(UnixFileSystem.java:119) at java.io.File.(File.java:433) at com.aptana.git.core.model.GitRepository.gitDirPath(GitRepository.java:1795) at com.aptana.git.core.model.GitRepository.workingDirectory(GitRepository.java:630) at com.aptana.git.core.model.GitIndex.workingDirectory(GitIndex.java:771) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-22 23:58:12.923 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-23 00:08:54.006 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 00:09:15.631 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 00:09:15.633 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-23 00:09:19.937 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-23 00:09:19.961 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-23 00:09:19.966 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-23 00:09:19.968 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-23 00:09:19.969 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-23 00:09:19.971 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-23 00:09:19.972 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-23 00:09:19.975 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-23 00:16:16.789 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-23 00:16:20.440 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 00:16:35.172 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 00:16:35.174 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 4 2 2015-09-23 00:23:52.845 !MESSAGE An internal error occurred during: "Searching for local changes". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at org.eclipse.core.internal.resources.Resource.getPathVariableManager(Resource.java:2073) at org.eclipse.core.internal.localstore.FileStoreRoot.createStore(FileStoreRoot.java:89) at org.eclipse.core.internal.localstore.FileSystemResourceManager.getStore(FileSystemResourceManager.java:517) at org.eclipse.core.internal.resources.Resource.getStore(Resource.java:1287) at org.eclipse.core.internal.localstore.UnifiedTreeNode.getStore(UnifiedTreeNode.java:93) at org.eclipse.core.internal.localstore.UnifiedTree.getLocalList(UnifiedTree.java:341) at org.eclipse.core.internal.localstore.UnifiedTree.addChildren(UnifiedTree.java:138) at org.eclipse.core.internal.localstore.UnifiedTree.addNodeChildrenToQueue(UnifiedTree.java:244) at org.eclipse.core.internal.localstore.UnifiedTree.accept(UnifiedTree.java:110) at org.eclipse.core.internal.localstore.FileSystemResourceManager.isSynchronized(FileSystemResourceManager.java:716) at org.eclipse.core.internal.resources.Resource.isSynchronized(Resource.java:1543) at org.eclipse.core.internal.refresh.PollingMonitor.poll(PollingMonitor.java:173) at org.eclipse.core.internal.refresh.PollingMonitor.run(PollingMonitor.java:132) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-23 00:23:52.847 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at org.eclipse.core.runtime.Path.computeSegments(Path.java:486) at org.eclipse.core.runtime.Path.initialize(Path.java:602) at org.eclipse.core.runtime.Path.(Path.java:163) at org.eclipse.core.runtime.Path.fromOSString(Path.java:90) at com.aptana.git.core.model.GitRepository.gitDirPath(GitRepository.java:1798) at com.aptana.git.core.model.GitRepository.workingDirectory(GitRepository.java:630) at com.aptana.git.core.model.GitIndex.workingDirectory(GitIndex.java:771) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-23 00:24:05.910 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-23 00:24:29.902 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 00:24:48.456 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 00:24:48.458 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui.workbench 4 2 2015-09-23 00:47:39.905 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-09-23 00:47:39.907 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-09-23 00:47:39.907 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SESSION 2015-09-23 14:52:06.556 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 14:52:28.121 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 14:52:28.127 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-09-23 15:22:42.909 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-23 15:22:46.113 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-23 15:22:53.901 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-23 15:22:53.902 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-23 15:22:53.903 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-23 15:22:53.904 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 15:22:54.255 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 15:22:54.256 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.equinox.preferences 4 2 2015-09-23 15:22:58.420 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.equinox.preferences". !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(WorkbenchPlugin.java:685) at org.eclipse.ui.internal.themes.Theme.(Theme.java:66) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.getTheme(WorkbenchThemeManager.java:317) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.getTheme(WorkbenchThemeManager.java:332) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.doSetCurrentTheme(WorkbenchThemeManager.java:237) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.setCurrentTheme(WorkbenchThemeManager.java:371) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.getCurrentTheme(WorkbenchThemeManager.java:277) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.init(WorkbenchThemeManager.java:178) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.getCurrentTheme(WorkbenchThemeManager.java:269) at org.eclipse.ui.internal.editors.text.EditorsPluginPreferenceInitializer.setThemeBasedPreferences(EditorsPluginPreferenceInitializer.java:50) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants.initializeDefaultValues(AbstractDecoratedTextEditorPreferenceConstants.java:751) at org.eclipse.ui.editors.text.TextEditorPreferenceConstants.initializeDefaultValues(TextEditorPreferenceConstants.java:259) at org.eclipse.ui.internal.editors.text.EditorsPluginPreferenceInitializer.initializeDefaultPreferences(EditorsPluginPreferenceInitializer.java:43) at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper$1.run(PreferenceServiceRegistryHelper.java:300) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.runInitializer(PreferenceServiceRegistryHelper.java:303) at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.applyRuntimeDefaults(PreferenceServiceRegistryHelper.java:131) at org.eclipse.core.internal.preferences.PreferencesService.applyRuntimeDefaults(PreferencesService.java:368) at org.eclipse.core.internal.preferences.DefaultPreferences.applyRuntimeDefaults(DefaultPreferences.java:221) at org.eclipse.core.internal.preferences.DefaultPreferences.load(DefaultPreferences.java:274) at org.eclipse.core.internal.preferences.EclipsePreferences.create(EclipsePreferences.java:409) at org.eclipse.core.internal.preferences.EclipsePreferences.internalNode(EclipsePreferences.java:670) at org.eclipse.core.internal.preferences.EclipsePreferences.node(EclipsePreferences.java:812) at org.eclipse.core.internal.preferences.AbstractScope.getNode(AbstractScope.java:38) at org.eclipse.core.runtime.preferences.DefaultScope.getNode(DefaultScope.java:76) at com.aptana.theme.internal.ThemeManager.setCompareColors(ThemeManager.java:256) at com.aptana.theme.internal.ThemeManager.setCurrentTheme(ThemeManager.java:221) at com.aptana.theme.internal.ThemeManager.getCurrentTheme(ThemeManager.java:196) at com.aptana.editor.common.CommonEditorPlugin$6.setOccurrenceColors(CommonEditorPlugin.java:324) at com.aptana.editor.common.CommonEditorPlugin$6.runInUIThread(CommonEditorPlugin.java:352) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:97) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.setSynchronizer(Display.java:4666) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2816) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:2797) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:633) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-23 15:23:13.081 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-23 15:23:13.082 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-23 15:23:13.085 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-23 15:23:13.106 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-23 15:23:13.107 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-23 15:23:13.109 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-23 15:23:13.110 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-23 15:23:13.112 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-23 15:57:10.922 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-23 17:38:39.550 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-09-23 17:38:47.443 !MESSAGE (Build 4.3.0.1441219724) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-23 17:38:47.446 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 17:39:16.153 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 17:39:16.155 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-09-23 17:46:29.370 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-23 17:46:58.500 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 17:47:06.245 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 17:47:06.246 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-23 17:47:20.116 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-23 17:47:20.142 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-23 17:47:20.146 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-23 17:47:20.147 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-23 17:47:20.148 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-23 17:47:20.150 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-23 17:47:20.151 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-23 17:47:20.153 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-23 18:02:03.247 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-23 23:11:16.519 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 23:11:41.374 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-23 23:11:41.376 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-23 23:11:46.858 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-23 23:11:46.883 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-23 23:11:46.891 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-23 23:11:46.895 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-23 23:11:46.897 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-23 23:11:46.899 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-23 23:11:46.900 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-23 23:11:46.903 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-23 23:12:45.999 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-09-23 23:12:45.999 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-24 14:07:55.328 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 14:08:16.933 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 14:08:16.935 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-24 14:08:22.413 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-24 14:08:22.445 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-24 14:08:22.449 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-24 14:08:22.451 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-24 14:08:22.453 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-24 14:08:22.455 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-24 14:08:22.457 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-24 14:08:22.459 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-24 14:16:14.744 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 14:16:53.620 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 14:16:53.621 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-24 14:16:56.893 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-24 14:16:56.909 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-24 14:16:56.914 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-24 14:16:56.916 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-24 14:16:56.918 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-24 14:16:56.922 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-24 14:16:56.924 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-24 14:16:56.927 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 4 2 2015-09-24 14:24:29.181 !MESSAGE An internal error occurred during: "Refreshing git index". !STACK 0 java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOfRange(Arrays.java:2694) at java.lang.String.(String.java:203) at java.lang.StringBuilder.toString(StringBuilder.java:405) at java.lang.Throwable.toString(Throwable.java:481) at java.lang.Throwable.(Throwable.java:311) at java.lang.Exception.(Exception.java:102) at java.util.concurrent.ExecutionException.(ExecutionException.java:92) at java.util.concurrent.FutureTask.report(FutureTask.java:122) at java.util.concurrent.FutureTask.get(FutureTask.java:188) at java.util.concurrent.AbstractExecutorService.invokeAll(AbstractExecutorService.java:243) at com.aptana.git.core.model.GitIndex.refresh(GitIndex.java:209) at com.aptana.git.core.model.GitIndex.refresh(GitIndex.java:133) at com.aptana.git.core.model.GitIndexRefreshJob.run(GitIndexRefreshJob.java:85) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui.workbench 4 2 2015-09-24 14:24:32.128 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-09-24 14:24:32.130 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-09-24 14:24:32.131 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SESSION 2015-09-24 14:24:42.577 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 14:26:33.075 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 14:26:33.080 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-24 14:26:45.129 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-24 14:26:45.144 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-24 14:26:45.148 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-24 14:26:45.149 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-24 14:26:45.152 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-24 14:26:45.154 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-24 14:26:45.690 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-24 14:26:45.692 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.js.core 4 0 2015-09-24 14:43:51.066 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.aptana.editor.findbar 4 4 2015-09-24 14:52:31.975 !MESSAGE No match available !STACK 0 java.lang.IllegalStateException: No match available at java.util.regex.Matcher.start(Matcher.java:342) at org.eclipse.jface.text.FindReplaceDocumentAdapter.findReplace(FindReplaceDocumentAdapter.java:204) at org.eclipse.jface.text.FindReplaceDocumentAdapter.replace(FindReplaceDocumentAdapter.java:604) at org.eclipse.jface.text.TextViewer$FindReplaceTarget.replaceSelection(TextViewer.java:832) at org.eclipse.ui.texteditor.FindReplaceTarget.replaceSelection(FindReplaceTarget.java:141) at com.aptana.editor.findbar.impl.CopiedFromFindReplaceDialog.replaceSelection(CopiedFromFindReplaceDialog.java:50) at com.aptana.editor.findbar.impl.FindBarDecorator.replace(FindBarDecorator.java:1229) at com.aptana.editor.findbar.impl.FindBarDecorator.handleWidgetSelected(FindBarDecorator.java:1149) at com.aptana.editor.findbar.impl.FindBarDecorator.widgetSelected(FindBarDecorator.java:1134) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.aptana.editor.findbar 4 4 2015-09-24 14:52:32.241 !MESSAGE No match available !STACK 0 java.lang.IllegalStateException: No match available at java.util.regex.Matcher.start(Matcher.java:342) at org.eclipse.jface.text.FindReplaceDocumentAdapter.findReplace(FindReplaceDocumentAdapter.java:204) at org.eclipse.jface.text.FindReplaceDocumentAdapter.replace(FindReplaceDocumentAdapter.java:604) at org.eclipse.jface.text.TextViewer$FindReplaceTarget.replaceSelection(TextViewer.java:832) at org.eclipse.ui.texteditor.FindReplaceTarget.replaceSelection(FindReplaceTarget.java:141) at com.aptana.editor.findbar.impl.CopiedFromFindReplaceDialog.replaceSelection(CopiedFromFindReplaceDialog.java:50) at com.aptana.editor.findbar.impl.FindBarDecorator.replace(FindBarDecorator.java:1229) at com.aptana.editor.findbar.impl.FindBarDecorator.handleWidgetSelected(FindBarDecorator.java:1149) at com.aptana.editor.findbar.impl.FindBarDecorator.widgetSelected(FindBarDecorator.java:1134) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.jobs 4 2 2015-09-24 16:36:25.093 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:442) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:312) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:227) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-24 16:36:33.127 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-24 19:15:18.848 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-09-24 19:15:27.644 !MESSAGE (Build 4.3.0.1441219724) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-24 19:15:27.648 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 19:16:28.290 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 19:16:28.292 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-09-24 19:23:55.545 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-24 19:23:58.995 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 19:24:06.706 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 19:24:06.711 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-24 19:24:18.145 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-24 19:24:18.148 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-24 19:24:18.160 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-24 19:24:18.161 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-24 19:24:18.162 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-24 19:24:18.164 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-24 19:24:18.165 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-24 19:24:18.167 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-24 20:20:46.357 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-24 20:34:34.216 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 20:34:59.090 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 20:34:59.092 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-24 20:35:03.814 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-24 20:35:03.842 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-24 20:35:03.849 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-24 20:35:03.852 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-24 20:35:03.853 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-24 20:35:03.855 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-24 20:35:03.858 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-24 20:35:03.859 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-24 20:50:50.144 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-09-24 20:51:07.101 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-24 20:51:07.102 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-24 20:51:07.102 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-24 20:51:07.102 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 20:51:08.543 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 20:51:08.544 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-09-24 20:58:23.333 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-24 20:58:27.341 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 20:58:34.906 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-24 20:58:34.907 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-24 20:58:48.656 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-24 20:58:48.680 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-24 20:58:48.683 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-24 20:58:48.685 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-24 20:58:48.686 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-24 20:58:48.687 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-24 20:58:48.688 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-24 20:58:48.690 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-24 22:14:22.596 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-25 01:08:25.510 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 01:08:50.929 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 01:08:50.931 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-25 01:08:57.232 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-25 01:08:57.260 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-25 01:08:57.263 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-25 01:08:57.265 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-25 01:08:57.267 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-25 01:08:57.269 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-25 01:08:57.271 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-25 01:08:57.272 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-25 01:16:21.485 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-25 01:16:48.146 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-25 01:16:55.816 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-25 01:16:55.817 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-25 01:16:55.820 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-25 01:16:55.821 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 01:17:00.547 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 01:17:00.548 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-09-25 01:58:09.729 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-25 13:55:56.690 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -data /Users/James/Documents/Appcelerator_Studio_Workspace_newproject -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 13:56:14.714 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 13:56:14.718 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-25 13:56:26.196 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-25 13:56:26.199 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-25 13:56:26.202 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-25 13:56:26.204 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-25 13:56:26.205 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-25 13:56:26.207 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-25 13:56:26.208 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-25 13:56:26.210 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-25 13:58:32.440 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-09-25 13:58:32.441 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-09-25 13:58:32.441 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.GitResourceListener$GitAutoAttachProjectJob !SESSION 2015-09-25 14:26:48.559 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:27:21.897 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:27:21.899 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-25 14:27:25.456 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-25 14:27:25.458 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-25 14:27:25.481 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-25 14:27:25.484 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-25 14:27:25.486 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-25 14:27:25.488 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-25 14:27:25.491 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-25 14:27:25.493 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-25 14:34:51.586 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:35:13.289 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:35:13.290 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-25 14:35:19.255 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-25 14:35:19.289 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-25 14:35:19.293 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-25 14:35:19.295 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-25 14:35:19.297 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-25 14:35:19.299 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-25 14:35:19.321 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-25 14:35:19.323 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.js.core 4 0 2015-09-25 14:37:14.594 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.equinox.event 4 0 2015-09-25 14:43:29.868 !MESSAGE Exception while dispatching event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD] to handler org.eclipse.e4.ui.internal.di.UIEventObjectSupplier$UIEventHandler@32f2c977 !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.util.HashMap.createEntry(HashMap.java:901) at java.util.HashMap.addEntry(HashMap.java:888) at java.util.HashMap.put(HashMap.java:509) at org.eclipse.e4.core.di.internal.extensions.EventObjectSupplier.addCurrentEvent(EventObjectSupplier.java:139) at org.eclipse.e4.ui.internal.di.UIEventObjectSupplier.access$1(UIEventObjectSupplier.java:1) at org.eclipse.e4.ui.internal.di.UIEventObjectSupplier$UIEventHandler.handleEvent(UIEventObjectSupplier.java:45) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.emf.ecore.util.EcoreEList.dispatchNotification(EcoreEList.java:249) at org.eclipse.emf.common.notify.impl.NotifyingListImpl.addUnique(NotifyingListImpl.java:304) at org.eclipse.emf.common.util.AbstractEList.add(AbstractEList.java:303) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.updateNonFocusState(WBWRenderer.java:615) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.access$5(WBWRenderer.java:595) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$13.handleEvent(WBWRenderer.java:589) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1471) at org.eclipse.swt.widgets.Shell.windowDidResignKey(Shell.java:2221) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5684) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSWindow.makeKeyAndOrderFront(NSWindow.java:202) !ENTRY org.eclipse.core.jobs 4 2 2015-09-25 14:43:37.307 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at com.aptana.core.util.StringUtil.split(StringUtil.java:754) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.hackEnvironment(NodeAppcCLI.java:375) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:326) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:260) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:238) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.android.core.AndroidSDKLocator.loadTiInfo(AndroidSDKLocator.java:836) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:226) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-09-25 14:43:37.308 !MESSAGE An internal error occurred during: "Decoration Calculation". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at java.io.UnixFileSystem.fromURIPath(UnixFileSystem.java:119) at java.io.File.(File.java:433) at com.aptana.git.core.model.GitRepository.gitDirPath(GitRepository.java:1795) at com.aptana.git.core.model.GitRepository.workingDirectory(GitRepository.java:632) at com.aptana.git.core.model.GitIndex.workingDirectory(GitIndex.java:771) at com.aptana.git.core.model.GitIndex.getChangedFileForResource(GitIndex.java:759) at com.aptana.git.core.model.GitRepository.getChangedFileForResource(GitRepository.java:1269) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:169) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-25 14:43:49.419 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-25 14:44:44.352 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:45:03.664 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:45:03.667 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-25 14:45:07.025 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-25 14:45:07.047 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-25 14:45:07.053 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-25 14:45:07.055 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-25 14:45:07.057 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-25 14:45:07.060 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-25 14:45:07.062 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-25 14:45:07.065 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:46:45.887 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:46:45.889 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:50:42.143 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:50:42.144 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:54:31.346 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:54:31.348 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:55:53.490 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 14:55:53.490 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:01:28.173 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:01:28.174 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:02:59.992 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:02:59.994 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:10:20.297 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:10:20.298 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:24:52.077 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:24:52.078 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:29:19.420 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:29:19.421 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:42:32.584 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:42:32.585 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:51:27.174 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:51:27.176 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:52:23.818 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-25 15:52:23.819 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-09-25 15:52:50.521 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-26 13:22:27.749 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-09-26 13:22:37.538 !MESSAGE (Build 4.3.0.1441219724) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-26 13:22:37.543 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 13:23:38.587 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 13:23:38.592 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-26 13:23:42.705 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-26 13:23:42.726 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-26 13:23:42.731 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-26 13:23:42.734 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-26 13:23:42.736 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-26 13:23:42.739 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-26 13:23:42.742 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-26 13:23:42.744 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 13:24:44.759 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 13:24:44.761 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.core 4 1 2015-09-26 13:25:04.911 !MESSAGE sudo: a password is required !ENTRY com.aptana.core 0 0 2015-09-26 13:25:10.966 !MESSAGE !ENTRY org.eclipse.core.jobs 4 2 2015-09-26 13:26:33.670 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:442) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:312) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:227) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-26 13:26:34.279 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-09-26 13:26:34.280 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-26 13:32:52.874 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 13:33:14.096 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 13:33:14.106 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-26 13:33:19.893 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-26 13:33:19.913 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-26 13:33:19.918 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-26 13:33:19.921 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-26 13:33:19.923 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-26 13:33:19.927 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-26 13:33:19.930 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-26 13:33:19.932 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 13:36:35.914 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 13:36:35.916 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 0 2015-09-26 13:38:17.877 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Errors occurred while grabbing changed file listings !ENTRY org.eclipse.core.jobs 4 2 2015-09-26 13:38:22.575 !MESSAGE An internal error occurred during: "Searching for local changes". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded !ENTRY org.eclipse.core.jobs 2 2 2015-09-26 13:38:29.225 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-26 13:39:13.389 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 13:39:33.753 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 13:39:33.754 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-26 13:39:37.449 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-26 13:39:37.475 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-26 13:39:37.479 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-26 13:39:37.481 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-26 13:39:37.483 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-26 13:39:37.485 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-26 13:39:37.486 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-26 13:39:37.489 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 13:50:19.439 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 13:50:19.442 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:00:24.519 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:00:24.520 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-26 14:00:36.859 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:04:01.938 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:04:01.938 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:04:43.889 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:04:43.889 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:11:04.325 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:11:04.326 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:24:34.986 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:24:34.987 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:28:31.512 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:28:31.513 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:32:36.185 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:32:36.186 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:33:32.660 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:33:32.661 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:37:43.209 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:37:43.210 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.alloy.core 4 0 2015-09-26 14:41:49.593 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Failed to parse for file:/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Emoji%20Expand%20Poc/app/views/index.xml for Alloy XML validation !STACK 0 java.lang.Error: Error: could not match input at com.aptana.xml.core.parsing.XMLScanner.zzScanError(XMLScanner.java:538) at com.aptana.xml.core.parsing.XMLScanner.yylex(XMLScanner.java:692) at com.aptana.xml.core.parsing.XMLScanner.nextToken(XMLScanner.java:313) at com.aptana.xml.core.parsing.XMLParser.advance(XMLParser.java:148) at com.aptana.xml.core.parsing.XMLParser.parseAll(XMLParser.java:142) at com.aptana.xml.core.parsing.XMLParser.parse(XMLParser.java:113) at com.aptana.parsing.AbstractParser.parse(AbstractParser.java:10) at com.aptana.parsing.ParsingEngine.noCacheParse(ParsingEngine.java:424) at com.aptana.parsing.ParsingEngine.parse(ParsingEngine.java:229) at com.aptana.parsing.ParserPoolFactory.parse(ParserPoolFactory.java:230) at com.aptana.index.core.build.BuildContext.parse(BuildContext.java:140) at com.aptana.index.core.build.BuildContext.getAST(BuildContext.java:111) at com.aptana.index.core.build.BuildContext.getAST(BuildContext.java:95) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:217) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.alloy.core 4 0 2015-09-26 14:43:03.810 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Failed to parse for file:/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Emoji%20Expand%20Poc/app/views/index.xml for Alloy XML validation !STACK 0 java.lang.Error: Error: could not match input at com.aptana.xml.core.parsing.XMLScanner.zzScanError(XMLScanner.java:538) at com.aptana.xml.core.parsing.XMLScanner.yylex(XMLScanner.java:692) at com.aptana.xml.core.parsing.XMLScanner.nextToken(XMLScanner.java:313) at com.aptana.xml.core.parsing.XMLParser.advance(XMLParser.java:148) at com.aptana.xml.core.parsing.XMLParser.parseAll(XMLParser.java:142) at com.aptana.xml.core.parsing.XMLParser.parse(XMLParser.java:113) at com.aptana.parsing.AbstractParser.parse(AbstractParser.java:10) at com.aptana.parsing.ParsingEngine.noCacheParse(ParsingEngine.java:424) at com.aptana.parsing.ParsingEngine.parse(ParsingEngine.java:229) at com.aptana.parsing.ParserPoolFactory.parse(ParserPoolFactory.java:230) at com.aptana.index.core.build.BuildContext.parse(BuildContext.java:140) at com.aptana.index.core.build.BuildContext.getAST(BuildContext.java:111) at com.aptana.index.core.build.BuildContext.getAST(BuildContext.java:95) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:217) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.alloy.core 4 0 2015-09-26 14:43:09.175 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Failed to parse for file:/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Emoji%20Expand%20Poc/app/views/index.xml for Alloy XML validation !STACK 0 java.lang.Error: Error: could not match input at com.aptana.xml.core.parsing.XMLScanner.zzScanError(XMLScanner.java:538) at com.aptana.xml.core.parsing.XMLScanner.yylex(XMLScanner.java:692) at com.aptana.xml.core.parsing.XMLScanner.nextToken(XMLScanner.java:313) at com.aptana.xml.core.parsing.XMLParser.advance(XMLParser.java:148) at com.aptana.xml.core.parsing.XMLParser.parseAll(XMLParser.java:142) at com.aptana.xml.core.parsing.XMLParser.parse(XMLParser.java:113) at com.aptana.parsing.AbstractParser.parse(AbstractParser.java:10) at com.aptana.parsing.ParsingEngine.noCacheParse(ParsingEngine.java:424) at com.aptana.parsing.ParsingEngine.parse(ParsingEngine.java:229) at com.aptana.parsing.ParserPoolFactory.parse(ParserPoolFactory.java:230) at com.aptana.index.core.build.BuildContext.parse(BuildContext.java:140) at com.aptana.index.core.build.BuildContext.getAST(BuildContext.java:111) at com.aptana.index.core.build.BuildContext.getAST(BuildContext.java:95) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:217) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.alloy.core 4 0 2015-09-26 14:46:11.964 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Failed to parse for file:/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Emoji%20Expand%20Poc/app/views/index.xml for Alloy XML validation !STACK 0 java.lang.Error: Error: could not match input at com.aptana.xml.core.parsing.XMLScanner.zzScanError(XMLScanner.java:538) at com.aptana.xml.core.parsing.XMLScanner.yylex(XMLScanner.java:692) at com.aptana.xml.core.parsing.XMLScanner.nextToken(XMLScanner.java:313) at com.aptana.xml.core.parsing.XMLParser.advance(XMLParser.java:148) at com.aptana.xml.core.parsing.XMLParser.parseAll(XMLParser.java:142) at com.aptana.xml.core.parsing.XMLParser.parse(XMLParser.java:113) at com.aptana.parsing.AbstractParser.parse(AbstractParser.java:10) at com.aptana.parsing.ParsingEngine.noCacheParse(ParsingEngine.java:424) at com.aptana.parsing.ParsingEngine.parse(ParsingEngine.java:229) at com.aptana.parsing.ParserPoolFactory.parse(ParserPoolFactory.java:230) at com.aptana.index.core.build.BuildContext.parse(BuildContext.java:140) at com.aptana.index.core.build.BuildContext.getAST(BuildContext.java:111) at com.aptana.index.core.build.BuildContext.getAST(BuildContext.java:95) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:217) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:47:49.776 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:47:49.777 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:48:37.078 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:48:37.078 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:49:33.757 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:49:33.757 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:58:26.946 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 14:58:26.947 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:00:13.370 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:00:13.385 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:06:52.534 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:06:52.535 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-09-26 15:09:18.939 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-26 15:09:25.208 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:09:36.057 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:09:36.068 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-26 15:09:51.387 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-26 15:09:51.390 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-26 15:09:51.417 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-26 15:09:51.419 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-26 15:09:51.420 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-26 15:09:51.422 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-26 15:09:51.423 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-26 15:09:51.425 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:18:25.239 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:18:25.241 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:20:02.522 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:20:02.522 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:22:35.562 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:22:35.563 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:23:21.442 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:23:21.443 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:25:07.529 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:25:07.529 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:25:26.126 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:25:26.127 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:29:09.150 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:29:09.151 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-09-26 15:51:21.332 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-26 15:51:26.242 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:51:36.225 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:51:36.234 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-26 15:51:49.396 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-26 15:51:49.398 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-26 15:51:49.406 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-26 15:51:49.423 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-26 15:51:49.425 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-26 15:51:49.427 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-26 15:51:49.436 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-26 15:51:49.438 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:53:38.709 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:53:38.709 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:56:39.110 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:56:39.112 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:57:59.735 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:57:59.736 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:58:49.330 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:58:49.331 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:59:12.682 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 15:59:12.683 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:00:52.581 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:00:52.582 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:01:13.723 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:01:13.724 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:06:36.796 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:06:36.797 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:11:26.829 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:11:26.830 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-26 16:12:12.434 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:14:09.057 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:14:09.058 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:21:41.374 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:21:41.375 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:23:26.275 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:23:26.275 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:28:07.910 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:28:07.911 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:28:49.111 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:28:49.112 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:30:50.157 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:30:50.157 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:32:27.016 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:32:27.016 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:33:23.528 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:33:23.528 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:35:55.268 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:35:55.269 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:38:00.751 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:38:00.753 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:39:29.369 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:39:29.371 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:39:50.834 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:39:50.835 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:41:19.841 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:41:19.842 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:43:33.390 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:43:33.391 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:44:09.477 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:44:09.478 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:45:41.813 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:45:41.814 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:46:02.576 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:46:02.577 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-26 16:47:20.636 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:53:33.700 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:53:33.700 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:55:34.679 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:55:34.679 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-26 16:56:19.652 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:57:35.822 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:57:35.823 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:59:53.777 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 16:59:53.777 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:01:35.746 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:01:35.746 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:02:20.219 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:02:20.219 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:03:21.929 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:03:21.929 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:04:11.908 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:04:11.908 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:06:09.608 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:06:09.608 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:06:37.970 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:06:37.970 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:07:57.738 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:07:57.739 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:09:42.804 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:09:42.804 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:11:03.784 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:11:03.785 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:20:08.647 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:20:08.649 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:20:31.510 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:20:31.511 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:21:12.106 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:21:12.107 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-26 17:25:23.534 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Source type cannot be null or empty !STACK 0 java.lang.IllegalArgumentException: Source type cannot be null or empty at com.appcelerator.titanium.alloy.core.js.inferencing.AlloyJSAliasResolver.resolve(AlloyJSAliasResolver.java:26) at com.aptana.js.internal.core.inferencing.AliasResolverFactory.resolve(AliasResolverFactory.java:100) at com.aptana.js.core.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:704) at com.aptana.js.core.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.editor.js.contentassist.ParseUtil.getReceiverTypeNames(ParseUtil.java:451) at com.aptana.editor.js.contentassist.JSContentAssistProcessor.getParentObjectTypes(JSContentAssistProcessor.java:1399) at com.aptana.editor.js.contentassist.JSContentAssistProcessor.addProperties(JSContentAssistProcessor.java:323) at com.aptana.editor.js.contentassist.JSContentAssistProcessor.doComputeCompletionProposals(JSContentAssistProcessor.java:884) at com.aptana.editor.common.CommonContentAssistProcessor.computeCompletionProposals(CommonContentAssistProcessor.java:417) at com.aptana.editor.common.contentassist.ContentAssistant.computeCompletionProposals(ContentAssistant.java:2221) at com.aptana.editor.common.contentassist.CompletionProposalPopup.computeProposals(CompletionProposalPopup.java:394) at com.aptana.editor.common.contentassist.CompletionProposalPopup.access$7(CompletionProposalPopup.java:388) at com.aptana.editor.common.contentassist.CompletionProposalPopup$1.run(CompletionProposalPopup.java:331) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at com.aptana.editor.common.contentassist.CompletionProposalPopup.showProposals(CompletionProposalPopup.java:325) at com.aptana.editor.common.contentassist.ContentAssistant$AutoAssistListener$1.run(ContentAssistant.java:468) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:25:27.580 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:25:27.581 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:25:48.175 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:25:48.176 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:28:45.646 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:28:45.647 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:34:16.113 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:34:16.114 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:34:38.035 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:34:38.036 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:42:02.289 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:42:02.289 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:42:34.403 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:42:34.403 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:46:29.329 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:46:29.330 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:48:05.280 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:48:05.281 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-26 17:50:21.632 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Source type cannot be null or empty !STACK 0 java.lang.IllegalArgumentException: Source type cannot be null or empty at com.appcelerator.titanium.alloy.core.js.inferencing.AlloyJSAliasResolver.resolve(AlloyJSAliasResolver.java:26) at com.aptana.js.internal.core.inferencing.AliasResolverFactory.resolve(AliasResolverFactory.java:100) at com.aptana.js.core.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:704) at com.aptana.js.core.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.editor.js.contentassist.ParseUtil.getReceiverTypeNames(ParseUtil.java:451) at com.aptana.editor.js.contentassist.JSContentAssistProcessor.getParentObjectTypes(JSContentAssistProcessor.java:1399) at com.aptana.editor.js.contentassist.JSContentAssistProcessor.addProperties(JSContentAssistProcessor.java:323) at com.aptana.editor.js.contentassist.JSContentAssistProcessor.doComputeCompletionProposals(JSContentAssistProcessor.java:884) at com.aptana.editor.common.CommonContentAssistProcessor.computeCompletionProposals(CommonContentAssistProcessor.java:417) at com.aptana.editor.common.contentassist.ContentAssistant.computeCompletionProposals(ContentAssistant.java:2221) at com.aptana.editor.common.contentassist.CompletionProposalPopup.computeProposals(CompletionProposalPopup.java:394) at com.aptana.editor.common.contentassist.CompletionProposalPopup.access$7(CompletionProposalPopup.java:388) at com.aptana.editor.common.contentassist.CompletionProposalPopup$1.run(CompletionProposalPopup.java:331) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at com.aptana.editor.common.contentassist.CompletionProposalPopup.showProposals(CompletionProposalPopup.java:325) at com.aptana.editor.common.contentassist.ContentAssistant$AutoAssistListener$1.run(ContentAssistant.java:468) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:54:17.899 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:54:17.899 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:56:01.672 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:56:01.673 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:57:46.573 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:57:46.574 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:58:43.039 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:58:43.040 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:59:39.916 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 17:59:39.917 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-26 18:01:48.851 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:06:20.148 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:06:20.149 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:07:11.254 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:07:11.255 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:08:01.219 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:08:01.220 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:08:38.776 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:08:38.777 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:09:50.163 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:09:50.164 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:10:25.223 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:10:25.224 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:13:11.970 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:13:11.973 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.core 4 1 2015-09-26 18:13:32.328 !MESSAGE sudo: a password is required !ENTRY com.aptana.core 0 0 2015-09-26 18:13:37.242 !MESSAGE !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:14:39.064 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:14:39.065 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:16:34.905 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:16:34.905 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:17:55.223 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-26 18:17:55.223 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-09-26 18:19:34.428 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-27 00:18:36.593 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:18:59.187 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:18:59.193 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-27 00:19:06.125 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-27 00:19:06.126 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-27 00:19:06.151 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-27 00:19:06.153 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-27 00:19:06.155 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-27 00:19:06.156 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-27 00:19:06.159 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-27 00:19:06.160 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:20:43.826 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:20:43.829 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 4 2 2015-09-27 00:38:57.175 !MESSAGE An internal error occurred during: "Update iOS info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.ProcessEnvironment$Variable.valueOfQueryOnly(ProcessEnvironment.java:165) at java.lang.ProcessEnvironment$Variable.valueOf(ProcessEnvironment.java:170) at java.lang.ProcessEnvironment$StringEnvironment.put(ProcessEnvironment.java:241) at java.lang.ProcessEnvironment$StringEnvironment.put(ProcessEnvironment.java:220) at java.util.AbstractMap.putAll(AbstractMap.java:273) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:130) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:332) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:260) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:238) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.ios.core.IOSSDKLocator.loadTiInfo(IOSSDKLocator.java:603) at com.appcelerator.titanium.ios.core.IOSSDKLocator.updateTiInfo(IOSSDKLocator.java:145) at com.appcelerator.titanium.ios.core.IOSSDKLocator.access$0(IOSSDKLocator.java:143) at com.appcelerator.titanium.ios.core.IOSSDKLocator$1.run(IOSSDKLocator.java:164) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-27 00:39:09.300 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-27 00:39:44.952 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:40:06.795 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:40:06.799 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-27 00:40:10.995 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-27 00:40:11.010 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-27 00:40:11.027 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-27 00:40:11.028 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-27 00:40:11.030 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-27 00:40:11.032 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-27 00:40:11.035 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-27 00:40:11.037 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:49:20.273 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:49:20.275 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:50:59.546 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:50:59.547 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:53:17.606 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:53:17.607 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:57:03.974 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:57:03.976 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-27 00:57:16.967 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:59:44.547 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 00:59:44.548 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui.workbench 4 2 2015-09-27 00:59:57.023 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-09-27 00:59:57.025 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-09-27 00:59:57.025 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-27 01:00:06.417 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-27 01:06:32.800 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:06:53.656 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:06:53.658 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-27 01:07:04.198 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-27 01:07:04.217 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-27 01:07:04.219 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-27 01:07:04.220 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-27 01:07:04.222 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-27 01:07:04.223 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-27 01:07:04.224 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-27 01:07:04.226 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:07:31.383 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:07:31.384 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:12:32.840 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:12:32.840 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:13:57.254 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:13:57.254 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:32:10.895 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:32:10.896 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:34:30.338 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:34:30.339 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-27 01:37:17.730 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:40:49.026 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:40:49.027 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:43:29.079 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:43:29.080 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:43:48.383 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:43:48.383 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:46:38.074 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:46:38.075 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:47:50.890 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:47:50.892 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:48:27.951 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:48:27.952 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:51:26.824 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:51:26.826 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:52:16.989 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:52:16.989 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:54:20.393 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:54:20.394 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:55:26.756 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:55:26.757 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:56:07.693 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:56:07.694 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-27 01:56:24.534 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:59:44.804 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 01:59:44.805 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:00:41.738 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:00:41.739 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:04:41.286 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:04:41.287 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:06:25.889 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:06:25.890 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:08:57.606 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:08:57.607 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:09:32.523 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:09:32.525 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:11:01.770 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:11:01.771 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:11:32.194 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:11:32.195 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:12:48.857 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:12:48.859 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:13:27.191 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:13:27.193 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:15:22.575 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:15:22.576 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:15:44.925 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:15:44.926 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-27 02:16:34.669 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Source type cannot be null or empty !STACK 0 java.lang.IllegalArgumentException: Source type cannot be null or empty at com.appcelerator.titanium.alloy.core.js.inferencing.AlloyJSAliasResolver.resolve(AlloyJSAliasResolver.java:26) at com.aptana.js.internal.core.inferencing.AliasResolverFactory.resolve(AliasResolverFactory.java:100) at com.aptana.js.core.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:704) at com.aptana.js.core.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.processValues(JSSymbolTypeInferrer.java:606) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:359) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:420) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer$1.map(JSSymbolTypeInferrer.java:289) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer$1.map(JSSymbolTypeInferrer.java:1) at com.aptana.core.util.CollectionsUtil.map(CollectionsUtil.java:432) at com.aptana.core.util.CollectionsUtil.map(CollectionsUtil.java:466) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.getScopeProperties(JSSymbolTypeInferrer.java:285) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:232) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:17:47.886 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:17:47.888 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:21:53.662 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:21:53.663 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:23:00.833 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:23:00.834 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:23:58.843 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:23:58.844 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:24:29.999 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:24:30.000 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-27 02:24:50.797 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Source type cannot be null or empty !STACK 0 java.lang.IllegalArgumentException: Source type cannot be null or empty at com.appcelerator.titanium.alloy.core.js.inferencing.AlloyJSAliasResolver.resolve(AlloyJSAliasResolver.java:26) at com.aptana.js.internal.core.inferencing.AliasResolverFactory.resolve(AliasResolverFactory.java:100) at com.aptana.js.core.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:704) at com.aptana.js.core.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.processValues(JSSymbolTypeInferrer.java:606) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:359) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:420) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer$1.map(JSSymbolTypeInferrer.java:289) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer$1.map(JSSymbolTypeInferrer.java:1) at com.aptana.core.util.CollectionsUtil.map(CollectionsUtil.java:432) at com.aptana.core.util.CollectionsUtil.map(CollectionsUtil.java:466) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.getScopeProperties(JSSymbolTypeInferrer.java:285) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:232) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:25:02.444 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:25:02.445 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:26:14.979 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:26:14.980 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:26:39.418 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:26:39.419 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:27:52.949 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:27:52.950 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:28:40.464 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:28:40.465 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:29:29.094 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:29:29.095 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:32:06.576 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:32:06.577 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:37:04.094 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:37:04.095 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:40:01.993 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:40:01.994 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:54:46.502 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 02:54:46.503 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-09-27 02:58:10.234 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.IllegalArgumentException: Argument not valid) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:4422) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkParent(Widget.java:511) at org.eclipse.swt.widgets.Widget.(Widget.java:132) at org.eclipse.swt.widgets.Control.(Control.java:116) at org.eclipse.swt.widgets.Scrollable.(Scrollable.java:73) at org.eclipse.swt.widgets.Composite.(Composite.java:91) at org.eclipse.ui.forms.widgets.LayoutComposite.(LayoutComposite.java:24) at org.eclipse.ui.forms.widgets.FormToolkit.createComposite(FormToolkit.java:311) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:555) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) ... 23 more !ENTRY org.eclipse.ui 4 0 2015-09-27 02:58:37.020 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.IllegalArgumentException: Argument not valid) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:4422) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkParent(Widget.java:511) at org.eclipse.swt.widgets.Widget.(Widget.java:132) at org.eclipse.swt.widgets.Control.(Control.java:116) at org.eclipse.swt.widgets.Scrollable.(Scrollable.java:73) at org.eclipse.swt.widgets.Composite.(Composite.java:91) at org.eclipse.ui.forms.widgets.LayoutComposite.(LayoutComposite.java:24) at org.eclipse.ui.forms.widgets.FormToolkit.createComposite(FormToolkit.java:311) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:555) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) ... 23 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 03:00:19.813 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 03:00:19.814 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-09-27 03:03:28.038 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-27 12:57:00.659 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 12:57:23.619 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 12:57:23.625 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-27 12:57:28.898 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-27 12:57:28.912 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-27 12:57:28.926 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-27 12:57:28.927 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-27 12:57:28.929 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-27 12:57:28.930 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-27 12:57:28.932 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-27 12:57:28.933 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 12:59:49.052 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 12:59:49.054 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-27 13:03:21.524 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.core.jobs 4 2 2015-09-27 13:04:17.560 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:442) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:312) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:227) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-27 13:04:21.458 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-27 13:05:32.551 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:06:07.711 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:06:07.713 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-27 13:06:10.860 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-27 13:06:10.880 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-27 13:06:10.887 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-27 13:06:10.890 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-27 13:06:10.893 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-27 13:06:10.896 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-27 13:06:10.898 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-27 13:06:10.901 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:09:59.733 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:09:59.734 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:11:15.616 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:11:15.617 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:13:05.852 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:13:05.852 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:14:00.745 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:14:00.746 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:15:40.770 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:15:40.772 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 4 2 2015-09-27 13:22:40.853 !MESSAGE An internal error occurred during: "Refreshing git index". !STACK 0 java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOfRange(Arrays.java:2694) at java.lang.String.(String.java:203) at java.lang.StringBuilder.toString(StringBuilder.java:405) at java.lang.Throwable.toString(Throwable.java:481) at java.lang.Throwable.(Throwable.java:311) at java.lang.Exception.(Exception.java:102) at java.util.concurrent.ExecutionException.(ExecutionException.java:92) at java.util.concurrent.FutureTask.report(FutureTask.java:122) at java.util.concurrent.FutureTask.get(FutureTask.java:188) at java.util.concurrent.AbstractExecutorService.invokeAll(AbstractExecutorService.java:243) at com.aptana.git.core.model.GitIndex.refresh(GitIndex.java:209) at com.aptana.git.core.model.GitIndex.refresh(GitIndex.java:133) at com.aptana.git.core.model.GitIndexRefreshJob.run(GitIndexRefreshJob.java:85) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-27 13:22:48.465 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-27 13:23:26.597 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-09-27 13:23:34.270 !MESSAGE (Build 4.3.0.1441219724) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-27 13:23:34.273 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:24:02.588 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:24:02.592 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-27 13:24:05.846 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-27 13:24:05.862 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-27 13:24:05.867 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-27 13:24:05.871 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-27 13:24:05.872 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-27 13:24:05.875 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-27 13:24:05.878 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-27 13:24:05.880 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:29:29.979 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:29:29.980 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:29:57.111 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:29:57.112 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:30:43.163 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:30:43.163 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-27 13:30:55.241 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !SESSION 2015-09-27 13:31:43.923 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-09-27 13:32:00.227 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-27 13:32:00.227 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-27 13:32:00.227 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-09-27 13:32:00.228 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:32:00.231 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:32:00.232 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:33:41.587 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:33:41.589 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:34:30.010 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:34:30.010 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:35:30.615 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:35:30.615 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:36:08.715 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:36:08.716 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:36:42.100 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:36:42.101 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:37:24.358 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:37:24.359 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:38:11.719 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:38:11.719 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:38:33.976 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:38:33.977 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:38:58.137 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:38:58.138 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:39:29.828 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:39:29.828 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:39:54.642 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:39:54.643 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:41:40.913 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:41:40.915 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:42:04.251 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:42:04.252 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:43:29.264 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:43:29.266 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:43:48.971 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:43:48.971 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:46:03.878 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:46:03.879 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:46:54.850 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:46:54.852 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:47:42.997 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:47:42.998 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:51:29.167 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:51:29.168 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:52:25.665 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:52:25.667 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:55:08.012 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:55:08.013 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:57:06.172 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:57:06.173 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:57:32.611 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:57:32.612 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:58:32.329 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:58:32.331 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:58:54.216 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 13:58:54.217 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:01:11.349 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:01:11.350 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:04:45.263 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:04:45.264 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:05:22.003 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:05:22.004 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:06:40.989 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:06:40.990 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:07:24.539 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:07:24.540 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:09:53.508 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:09:53.510 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:10:15.013 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:10:15.014 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:11:02.328 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:11:02.329 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:11:23.633 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:11:23.634 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:13:56.901 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:13:56.902 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:16:39.650 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:16:39.652 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:17:07.581 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:17:07.582 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:18:02.156 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:18:02.157 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:19:46.961 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:19:46.962 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-27 14:19:59.328 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:22:25.930 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:22:25.930 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:25:18.560 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:25:18.561 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:28:13.040 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:28:13.041 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:30:06.679 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:30:06.680 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:30:55.114 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:30:55.115 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:32:08.305 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:32:08.306 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-27 14:32:22.813 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:33:45.046 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:33:45.046 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:35:31.103 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:35:31.104 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:37:28.333 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:37:28.335 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:38:49.942 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:38:49.942 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:39:49.412 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:39:49.412 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:40:34.299 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:40:34.299 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:41:45.777 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:41:45.778 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:46:11.170 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:46:11.170 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:49:36.316 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:49:36.316 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:51:52.102 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:51:52.102 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:52:58.508 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:52:58.508 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:53:59.657 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:53:59.658 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:55:01.401 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:55:01.402 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-27 14:55:12.832 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:57:21.682 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:57:21.684 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:59:14.541 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 14:59:14.542 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 15:01:55.810 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 15:01:55.811 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 15:04:21.323 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 15:04:21.324 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 15:05:18.472 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 15:05:18.473 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 15:07:02.933 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 15:07:02.934 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 15:07:27.127 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 15:07:27.128 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-09-27 15:08:23.640 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-27 16:58:33.443 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 16:58:55.657 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 16:58:55.658 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-27 16:58:58.962 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-27 16:58:58.982 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-27 16:58:58.986 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-27 16:58:58.988 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-27 16:58:58.990 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-27 16:58:58.993 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-27 16:58:58.995 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-27 16:58:58.996 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 4 2 2015-09-27 17:00:47.346 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:442) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:312) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:227) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-27 17:00:48.219 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-09-27 17:00:48.220 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-27 17:01:50.746 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 17:02:13.918 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 17:02:13.922 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-27 17:02:19.604 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-27 17:02:19.629 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-27 17:02:19.633 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-27 17:02:19.635 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-27 17:02:19.636 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-27 17:02:19.639 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-27 17:02:19.640 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-27 17:02:19.642 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-27 17:06:27.004 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 17:06:48.923 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 17:06:48.925 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-09-27 17:12:44.085 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-27 17:14:12.600 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 17:14:32.929 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 17:14:32.931 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-27 17:14:36.549 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-27 17:14:36.575 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-27 17:14:36.580 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-27 17:14:36.582 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-27 17:14:36.584 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-27 17:14:36.585 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-27 17:14:36.587 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-27 17:14:36.590 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-27 17:20:50.848 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-27 17:23:27.797 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 17:23:52.277 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 17:23:52.279 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-27 17:23:56.392 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-27 17:23:56.394 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-27 17:23:56.418 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-27 17:23:56.422 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-27 17:23:56.424 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-27 17:23:56.425 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-27 17:23:56.428 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-27 17:23:56.430 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-27 17:32:07.098 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-27 17:32:13.115 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 17:32:23.741 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-27 17:32:23.749 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-27 17:32:36.860 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-27 17:32:36.863 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-27 17:32:36.890 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-27 17:32:36.891 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-27 17:32:36.892 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-27 17:32:36.895 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-27 17:32:36.896 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-27 17:32:36.898 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.editor.findbar 4 4 2015-09-27 17:33:26.290 !MESSAGE No match available !STACK 0 java.lang.IllegalStateException: No match available at java.util.regex.Matcher.start(Matcher.java:342) at org.eclipse.jface.text.FindReplaceDocumentAdapter.findReplace(FindReplaceDocumentAdapter.java:204) at org.eclipse.jface.text.FindReplaceDocumentAdapter.replace(FindReplaceDocumentAdapter.java:604) at org.eclipse.jface.text.TextViewer$FindReplaceTarget.replaceSelection(TextViewer.java:832) at org.eclipse.ui.texteditor.FindReplaceTarget.replaceSelection(FindReplaceTarget.java:141) at com.aptana.editor.findbar.impl.CopiedFromFindReplaceDialog.replaceSelection(CopiedFromFindReplaceDialog.java:50) at com.aptana.editor.findbar.impl.FindBarDecorator.replace(FindBarDecorator.java:1229) at com.aptana.editor.findbar.impl.FindBarDecorator.handleWidgetSelected(FindBarDecorator.java:1149) at com.aptana.editor.findbar.impl.FindBarDecorator.widgetSelected(FindBarDecorator.java:1134) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.aptana.js.core 4 0 2015-09-27 18:27:07.320 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.core.jobs 2 2 2015-09-27 18:27:48.411 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-28 00:37:50.015 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 00:38:11.639 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 00:38:11.644 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-28 00:38:16.466 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-28 00:38:16.467 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-28 00:38:16.470 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-28 00:38:16.472 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-28 00:38:16.501 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-28 00:38:16.508 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-28 00:38:16.510 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-28 00:38:16.511 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-28 00:46:47.322 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 00:49:07.382 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 00:49:07.384 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-28 00:49:10.828 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-28 00:49:10.856 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-28 00:49:10.860 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-28 00:49:10.862 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-28 00:49:10.864 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-28 00:49:10.866 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-28 00:49:10.870 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-28 00:49:10.872 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 4 2 2015-09-28 00:58:21.508 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.OutOfMemoryError: Java heap space at java.io.BufferedOutputStream.(BufferedOutputStream.java:76) at java.io.BufferedOutputStream.(BufferedOutputStream.java:59) at java.lang.UNIXProcess$ProcessPipeOutputStream.(UNIXProcess.java:301) at java.lang.UNIXProcess.initStreams(UNIXProcess.java:160) at java.lang.UNIXProcess$2.run(UNIXProcess.java:145) at java.lang.UNIXProcess$2.run(UNIXProcess.java:143) at java.security.AccessController.doPrivileged(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:143) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:332) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.run(NodeAppcCLI.java:260) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:238) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.android.core.AndroidSDKLocator.loadTiInfo(AndroidSDKLocator.java:836) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:226) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-28 00:58:34.046 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-28 00:59:43.635 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 01:02:30.007 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 01:02:30.009 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-28 01:02:34.794 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-28 01:02:34.806 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-28 01:02:34.824 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-28 01:02:34.826 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-28 01:02:34.827 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-28 01:02:34.829 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-28 01:02:34.831 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-28 01:02:34.833 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.js.core 4 0 2015-09-28 02:22:50.307 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !SESSION 2015-09-28 02:39:12.794 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-28 02:39:25.810 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-28 02:39:33.596 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 02:39:33.597 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 02:39:33.598 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 02:39:33.599 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 02:39:34.158 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 02:39:34.158 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-28 02:39:49.287 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-28 02:39:49.315 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-28 02:39:49.319 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-28 02:39:49.321 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-28 02:39:49.322 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-28 02:39:49.323 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-28 02:39:49.325 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-28 02:39:49.326 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 4 2 2015-09-28 02:40:27.443 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:442) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:312) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:227) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SESSION 2015-09-28 12:03:21.707 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 12:03:58.820 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 12:03:58.825 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-28 12:04:03.344 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-28 12:04:03.373 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-28 12:04:03.376 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-28 12:04:03.378 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-28 12:04:03.380 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-28 12:04:03.396 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-28 12:04:03.398 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-28 12:04:03.399 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-28 12:11:01.770 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-28 12:41:51.911 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 12:42:17.375 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 12:42:17.379 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-28 12:42:26.914 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-28 12:42:26.919 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-28 12:42:26.921 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-28 12:42:26.922 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-28 12:42:26.924 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-28 12:42:26.925 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-28 12:42:26.926 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-28 12:42:26.928 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.editor.common 4 0 2015-09-28 13:38:35.174 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Error invalidating syntax coloring for offset 21,083, length 1 !STACK 0 java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:4422) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.custom.StyledText.getOffsetAtLine(StyledText.java:4381) at org.eclipse.jface.text.JFaceTextUtil.getPartialTopIndex(JFaceTextUtil.java:103) at org.eclipse.jface.text.source.OverviewRuler$WidgetInfos.(OverviewRuler.java:360) at org.eclipse.jface.text.source.OverviewRuler.doPaint(OverviewRuler.java:764) at org.eclipse.jface.text.source.OverviewRuler.doubleBufferPaint(OverviewRuler.java:680) at org.eclipse.jface.text.source.OverviewRuler.access$12(OverviewRuler.java:656) at org.eclipse.jface.text.source.OverviewRuler$3.paintControl(OverviewRuler.java:595) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:230) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Control.drawWidget(Control.java:1244) at org.eclipse.swt.widgets.Canvas.drawWidget(Canvas.java:166) at org.eclipse.swt.widgets.Widget.drawRect(Widget.java:749) at org.eclipse.swt.widgets.Canvas.drawRect(Canvas.java:161) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5616) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSView.displayIfNeeded(NSView.java:142) at org.eclipse.swt.widgets.Control.update(Control.java:4970) at org.eclipse.swt.widgets.Control.update(Control.java:4950) at org.eclipse.jface.text.source.OverviewRuler.redraw(OverviewRuler.java:901) at org.eclipse.jface.text.source.OverviewRuler.access$2(OverviewRuler.java:894) at org.eclipse.jface.text.source.OverviewRuler$InternalListener.textChanged(OverviewRuler.java:85) at org.eclipse.jface.text.TextViewer.updateTextListeners(TextViewer.java:2825) at org.eclipse.jface.text.TextViewer.invalidateTextPresentation(TextViewer.java:3496) at com.aptana.editor.common.extensions.LineBackgroundPainter.paint(LineBackgroundPainter.java:139) at org.eclipse.jface.text.PaintManager.paint(PaintManager.java:299) at org.eclipse.jface.text.PaintManager.selectionChanged(PaintManager.java:338) at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:163) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:50) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:178) at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:160) at org.eclipse.jface.text.TextViewer.fireSelectionChanged(TextViewer.java:2733) at org.eclipse.jface.text.TextViewer.selectionChanged(TextViewer.java:2712) at org.eclipse.jface.text.TextViewer$4.widgetSelected(TextViewer.java:1831) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.StyledText.sendSelectionEvent(StyledText.java:8152) at org.eclipse.swt.custom.StyledText.clearSelection(StyledText.java:1708) at org.eclipse.swt.custom.StyledText.setSelection(StyledText.java:9618) at org.eclipse.swt.custom.StyledText.updateSelection(StyledText.java:10359) at org.eclipse.swt.custom.StyledText.handleTextChanged(StyledText.java:6253) at org.eclipse.swt.custom.StyledText$6.textChanged(StyledText.java:5643) at org.eclipse.jface.text.DefaultDocumentAdapter.fireTextChanged(DefaultDocumentAdapter.java:347) at org.eclipse.jface.text.DefaultDocumentAdapter.documentChanged(DefaultDocumentAdapter.java:291) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged2(AbstractDocument.java:760) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged(AbstractDocument.java:736) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged(AbstractDocument.java:721) at org.eclipse.jface.text.AbstractDocument.fireDocumentChanged(AbstractDocument.java:796) at org.eclipse.jface.text.projection.ProjectionDocument.fireDocumentChanged(ProjectionDocument.java:777) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1191) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1210) at org.eclipse.jface.text.projection.ProjectionDocument.replace(ProjectionDocument.java:629) at org.eclipse.jface.text.DefaultDocumentAdapter.replaceTextRange(DefaultDocumentAdapter.java:248) at org.eclipse.swt.custom.StyledText.modifyContent(StyledText.java:7268) at org.eclipse.swt.custom.StyledText.sendKeyEvent(StyledText.java:8111) at org.eclipse.swt.custom.StyledText.doBackspace(StyledText.java:2261) at org.eclipse.swt.custom.StyledText.invokeAction(StyledText.java:7058) at org.eclipse.swt.custom.StyledText.handleKey(StyledText.java:5959) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5986) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:5663) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1504) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1500) at org.eclipse.swt.widgets.Canvas.sendKeyEvent(Canvas.java:496) at org.eclipse.swt.widgets.Control.doCommandBySelector(Control.java:1060) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5730) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSResponder.interpretKeyEvents(NSResponder.java:68) at org.eclipse.swt.widgets.Composite.keyDown(Composite.java:594) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5640) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2105) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2329) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5702) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:5139) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5288) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3666) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.aptana.editor.common 4 0 2015-09-28 14:07:36.870 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Error invalidating syntax coloring for offset 20,645, length 1 !STACK 0 java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:4422) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.custom.StyledText.getOffsetAtLine(StyledText.java:4381) at org.eclipse.jface.text.JFaceTextUtil.getPartialTopIndex(JFaceTextUtil.java:103) at org.eclipse.jface.text.source.OverviewRuler$WidgetInfos.(OverviewRuler.java:360) at org.eclipse.jface.text.source.OverviewRuler.doPaint(OverviewRuler.java:764) at org.eclipse.jface.text.source.OverviewRuler.doubleBufferPaint(OverviewRuler.java:680) at org.eclipse.jface.text.source.OverviewRuler.access$12(OverviewRuler.java:656) at org.eclipse.jface.text.source.OverviewRuler$3.paintControl(OverviewRuler.java:595) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:230) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Control.drawWidget(Control.java:1244) at org.eclipse.swt.widgets.Canvas.drawWidget(Canvas.java:166) at org.eclipse.swt.widgets.Widget.drawRect(Widget.java:749) at org.eclipse.swt.widgets.Canvas.drawRect(Canvas.java:161) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5616) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSView.displayIfNeeded(NSView.java:142) at org.eclipse.swt.widgets.Control.update(Control.java:4970) at org.eclipse.swt.widgets.Control.update(Control.java:4950) at org.eclipse.jface.text.source.OverviewRuler.redraw(OverviewRuler.java:901) at org.eclipse.jface.text.source.OverviewRuler.access$2(OverviewRuler.java:894) at org.eclipse.jface.text.source.OverviewRuler$InternalListener.textChanged(OverviewRuler.java:85) at org.eclipse.jface.text.TextViewer.updateTextListeners(TextViewer.java:2825) at org.eclipse.jface.text.TextViewer.invalidateTextPresentation(TextViewer.java:3496) at com.aptana.editor.common.extensions.LineBackgroundPainter.paint(LineBackgroundPainter.java:139) at org.eclipse.jface.text.PaintManager.paint(PaintManager.java:299) at org.eclipse.jface.text.PaintManager.selectionChanged(PaintManager.java:338) at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:163) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:50) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:178) at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:160) at org.eclipse.jface.text.TextViewer.fireSelectionChanged(TextViewer.java:2733) at org.eclipse.jface.text.TextViewer.selectionChanged(TextViewer.java:2712) at org.eclipse.jface.text.TextViewer$4.widgetSelected(TextViewer.java:1831) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.StyledText.sendSelectionEvent(StyledText.java:8152) at org.eclipse.swt.custom.StyledText.clearSelection(StyledText.java:1708) at org.eclipse.swt.custom.StyledText.setSelection(StyledText.java:9618) at org.eclipse.swt.custom.StyledText.updateSelection(StyledText.java:10359) at org.eclipse.swt.custom.StyledText.handleTextChanged(StyledText.java:6253) at org.eclipse.swt.custom.StyledText$6.textChanged(StyledText.java:5643) at org.eclipse.jface.text.DefaultDocumentAdapter.fireTextChanged(DefaultDocumentAdapter.java:347) at org.eclipse.jface.text.DefaultDocumentAdapter.documentChanged(DefaultDocumentAdapter.java:291) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged2(AbstractDocument.java:760) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged(AbstractDocument.java:736) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged(AbstractDocument.java:721) at org.eclipse.jface.text.AbstractDocument.fireDocumentChanged(AbstractDocument.java:796) at org.eclipse.jface.text.projection.ProjectionDocument.fireDocumentChanged(ProjectionDocument.java:777) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1191) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1210) at org.eclipse.jface.text.projection.ProjectionDocument.replace(ProjectionDocument.java:629) at org.eclipse.jface.text.DefaultDocumentAdapter.replaceTextRange(DefaultDocumentAdapter.java:248) at org.eclipse.swt.custom.StyledText.modifyContent(StyledText.java:7268) at org.eclipse.swt.custom.StyledText.sendKeyEvent(StyledText.java:8111) at org.eclipse.swt.custom.StyledText.doBackspace(StyledText.java:2261) at org.eclipse.swt.custom.StyledText.invokeAction(StyledText.java:7058) at org.eclipse.swt.custom.StyledText.handleKey(StyledText.java:5959) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5986) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:5663) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1504) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1500) at org.eclipse.swt.widgets.Canvas.sendKeyEvent(Canvas.java:496) at org.eclipse.swt.widgets.Control.doCommandBySelector(Control.java:1060) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5730) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSResponder.interpretKeyEvents(NSResponder.java:68) at org.eclipse.swt.widgets.Composite.keyDown(Composite.java:594) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5640) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2105) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2329) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5702) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:5139) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5288) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3666) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.aptana.js.core 4 0 2015-09-28 15:14:16.229 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !SESSION 2015-09-28 16:05:15.195 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-28 16:05:26.637 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-28 16:05:34.986 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 16:05:34.986 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 16:05:34.988 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 16:05:34.989 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 16:05:35.432 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 16:05:35.433 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-28 16:05:46.198 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-28 16:05:46.219 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-28 16:05:46.222 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-28 16:05:46.224 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-28 16:05:46.225 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-28 16:05:46.226 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-28 16:05:46.227 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-28 16:05:46.228 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 1 2015-09-28 16:07:27.025 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 16:07:27.025 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 16:07:27.028 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 16:07:27.028 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.git.core 4 1 2015-09-28 16:12:31.581 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 16:12:31.581 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 16:12:31.584 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 16:12:31.584 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SESSION 2015-09-28 16:32:46.894 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-28 16:32:50.794 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 16:33:00.144 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 16:33:00.149 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-28 16:33:15.181 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-28 16:33:15.183 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-28 16:33:15.194 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-28 16:33:15.212 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-28 16:33:15.213 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-28 16:33:15.214 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-28 16:33:15.216 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-28 16:33:15.217 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 16:36:21.244 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 16:36:21.245 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 17:05:22.333 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 17:05:22.336 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-28 17:35:53.492 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.aptana.js.core 4 0 2015-09-28 17:45:15.281 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.core.jobs 2 2 2015-09-28 18:30:01.978 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-28 19:47:14.280 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 19:47:36.148 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 19:47:36.152 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-09-28 19:56:16.359 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-28 19:56:25.963 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-28 19:56:33.940 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 19:56:33.940 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 19:56:33.941 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-28 19:56:33.942 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 19:56:34.215 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-28 19:56:34.216 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-28 19:56:46.417 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-28 19:56:46.442 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-28 19:56:46.445 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-28 19:56:46.447 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-28 19:56:46.448 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-28 19:56:46.449 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-28 19:56:46.450 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-28 19:56:46.452 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.js.core 4 0 2015-09-28 20:47:01.764 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.core.jobs 2 2 2015-09-28 21:38:28.437 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-29 00:12:05.027 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-29 00:12:32.726 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-29 00:12:32.730 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-29 00:12:36.887 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-29 00:12:36.909 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-29 00:12:36.920 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-29 00:12:36.922 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-29 00:12:36.924 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-29 00:12:36.926 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-29 00:12:36.927 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-29 00:12:36.929 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-29 00:21:00.744 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-29 00:21:05.804 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-29 00:21:23.472 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-29 00:21:23.475 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-29 00:21:26.760 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-29 00:21:26.770 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-29 00:21:26.789 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-29 00:21:26.791 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-29 00:21:26.793 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-29 00:21:26.795 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-29 00:21:26.799 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-29 00:21:26.804 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-09-29 00:31:14.281 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-29 00:31:19.321 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-29 00:31:28.060 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-29 00:31:28.061 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-29 00:31:28.062 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-29 00:31:28.063 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-29 00:31:28.110 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-29 00:31:28.111 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-29 00:42:17.697 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.ui.workbench 4 2 2015-09-29 00:48:27.403 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-09-29 00:48:27.405 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-09-29 00:48:27.405 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-29 00:48:37.247 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-29 00:52:44.247 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-29 00:53:05.015 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-29 00:53:05.017 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-09-29 00:57:54.610 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-29 00:58:11.867 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-29 00:58:33.624 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-29 00:58:33.626 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.android.core 4 0 2015-09-29 02:26:16.525 !MESSAGE (Build 4.3.0.201509151348) [ERROR] null !STACK 0 javax.xml.transform.TransformerException: Unable to evaluate expression using this context at com.sun.org.apache.xpath.internal.XPath.execute(XPath.java:367) at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.eval(XPathExpressionImpl.java:129) at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.eval(XPathExpressionImpl.java:105) at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.evaluate(XPathExpressionImpl.java:187) at com.appcelerator.titanium.core.tiapp.TiAppModel.getNodes(TiAppModel.java:410) at com.appcelerator.titanium.android.core.tiapp.TiAppAndroidSectionReconciler.buildFile(TiAppAndroidSectionReconciler.java:63) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) Caused by: java.lang.RuntimeException: Unable to evaluate expression using this context at com.sun.org.apache.xpath.internal.axes.NodeSequence.setRoot(NodeSequence.java:266) at com.sun.org.apache.xpath.internal.axes.LocPathIterator.execute(LocPathIterator.java:214) at com.sun.org.apache.xpath.internal.XPath.execute(XPath.java:339) ... 12 more --------- java.lang.RuntimeException: Unable to evaluate expression using this context at com.sun.org.apache.xpath.internal.axes.NodeSequence.setRoot(NodeSequence.java:266) at com.sun.org.apache.xpath.internal.axes.LocPathIterator.execute(LocPathIterator.java:214) at com.sun.org.apache.xpath.internal.XPath.execute(XPath.java:339) at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.eval(XPathExpressionImpl.java:129) at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.eval(XPathExpressionImpl.java:105) at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.evaluate(XPathExpressionImpl.java:187) at com.appcelerator.titanium.core.tiapp.TiAppModel.getNodes(TiAppModel.java:410) at com.appcelerator.titanium.android.core.tiapp.TiAppAndroidSectionReconciler.buildFile(TiAppAndroidSectionReconciler.java:63) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) --------------- linked to ------------------ javax.xml.xpath.XPathExpressionException at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.evaluate(XPathExpressionImpl.java:200) at com.appcelerator.titanium.core.tiapp.TiAppModel.getNodes(TiAppModel.java:410) at com.appcelerator.titanium.android.core.tiapp.TiAppAndroidSectionReconciler.buildFile(TiAppAndroidSectionReconciler.java:63) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) Caused by: javax.xml.transform.TransformerException: Unable to evaluate expression using this context at com.sun.org.apache.xpath.internal.XPath.execute(XPath.java:367) at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.eval(XPathExpressionImpl.java:129) at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.eval(XPathExpressionImpl.java:105) at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.evaluate(XPathExpressionImpl.java:187) ... 9 more Caused by: java.lang.RuntimeException: Unable to evaluate expression using this context at com.sun.org.apache.xpath.internal.axes.NodeSequence.setRoot(NodeSequence.java:266) at com.sun.org.apache.xpath.internal.axes.LocPathIterator.execute(LocPathIterator.java:214) at com.sun.org.apache.xpath.internal.XPath.execute(XPath.java:339) ... 12 more !SESSION 2015-09-29 02:31:13.649 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-09-29 02:31:17.471 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-09-29 02:31:25.719 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-09-29 02:31:25.719 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-29 02:31:25.721 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-09-29 02:31:25.722 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-09-29 02:31:25.861 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-29 02:31:25.861 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-09-29 03:28:06.880 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.aptana.js.core 4 0 2015-09-29 04:02:54.609 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.core.jobs 2 2 2015-09-29 04:40:41.145 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-30 13:53:24.388 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-09-30 13:53:34.105 !MESSAGE (Build 4.3.0.1441219724) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-09-30 13:53:34.109 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-09-30 13:54:13.892 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-30 13:54:13.894 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui.workbench 4 2 2015-09-30 14:01:09.893 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-09-30 14:01:09.896 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-09-30 14:01:09.896 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-09-30 14:01:13.629 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-30 14:02:09.526 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-30 14:02:30.603 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-30 14:02:30.605 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-30 14:02:43.817 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-30 14:02:43.843 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-30 14:02:43.847 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-30 14:02:43.850 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-30 14:02:43.851 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-30 14:02:43.853 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-30 14:02:43.855 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-30 14:02:43.857 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-30 14:31:49.780 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-09-30 14:39:31.113 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-09-30 14:39:52.302 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-09-30 14:39:52.306 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-09-30 14:40:06.376 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-09-30 14:40:06.378 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-09-30 14:40:06.380 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-09-30 14:40:06.382 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-09-30 14:40:06.383 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-09-30 14:40:06.384 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-09-30 14:40:06.386 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-09-30 14:40:06.387 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-09-30 14:40:40.238 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-09-30 14:40:40.238 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-01 15:08:24.289 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-10-01 15:09:43.193 !MESSAGE (Build 4.3.0.1441219724) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-01 15:09:43.197 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 15:10:39.719 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 15:10:39.724 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-01 15:10:49.617 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-01 15:10:49.634 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-01 15:10:49.637 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-01 15:10:49.639 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-01 15:10:49.641 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-01 15:10:49.642 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-01 15:10:49.644 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-01 15:10:49.646 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 0 2015-10-01 15:15:28.602 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Errors occurred while grabbing changed file listings !SESSION 2015-10-01 15:22:15.118 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 15:22:32.628 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 15:22:32.632 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-01 15:22:32.712 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 15:22:32.713 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 15:22:32.713 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 15:22:32.713 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-01 15:22:40.425 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-01 15:22:40.462 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-01 15:22:40.465 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-01 15:22:40.468 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-01 15:22:40.470 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-01 15:22:40.472 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-01 15:22:40.474 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-01 15:22:40.477 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-10-01 15:29:36.596 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-01 18:31:21.786 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-10-01 18:31:37.951 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 18:31:37.951 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 18:31:37.951 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 18:31:37.952 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 18:31:39.564 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 18:31:39.564 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-01 18:47:21.557 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 18:47:21.557 !MESSAGE GC overhead limit exceeded !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at org.eclipse.core.runtime.Path.computeSegments(Path.java:488) at org.eclipse.core.runtime.Path.initialize(Path.java:602) at org.eclipse.core.runtime.Path.fromPortableString(Path.java:106) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.readOtherFiles(GitIndex.java:1056) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1033) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:47:21.558 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:47:21.560 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:47:21.560 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:47:21.561 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:47:21.562 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:47:21.563 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.git.core 4 1 2015-10-01 18:54:03.010 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:54:03.010 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:54:03.010 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:54:03.011 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:54:03.012 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:54:03.013 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:54:03.013 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.aptana.git.core 4 1 2015-10-01 18:57:59.673 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:57:59.673 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:57:59.674 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 18:57:59.674 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY org.eclipse.core.jobs 2 2 2015-10-01 19:10:03.208 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-01 19:16:25.719 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 19:16:48.787 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 19:16:48.792 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-01 19:22:09.488 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-01 19:24:12.399 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 19:24:38.270 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 19:24:38.271 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-01 19:24:49.126 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-01 19:24:49.146 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-01 19:24:49.154 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-01 19:24:49.162 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-01 19:24:49.164 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-01 19:24:49.166 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-01 19:24:49.168 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-01 19:24:49.171 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 19:25:54.481 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 19:25:54.482 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.core 4 1 2015-10-01 19:26:21.151 !MESSAGE sudo: a password is required !ENTRY com.aptana.core 0 0 2015-10-01 19:26:24.853 !MESSAGE !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 19:30:11.023 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 19:30:11.024 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui.workbench 4 2 2015-10-01 19:30:18.546 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-01 19:30:18.549 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-01 19:30:18.549 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-01 19:30:23.012 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-01 19:44:53.247 ----------------------------------------------- eclipse.buildId=4.3.0.201509151348 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-10-01 19:45:09.865 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 19:45:09.866 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 19:45:09.866 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 19:45:09.866 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 19:45:10.706 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 19:45:10.709 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-01 19:54:32.225 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-10-01 19:54:37.738 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-10-01 19:54:46.382 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 19:54:46.382 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 19:54:46.384 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 19:54:46.384 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 19:54:46.388 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 19:54:46.389 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-01 19:55:09.467 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-01 19:55:09.496 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-01 19:55:09.500 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-01 19:55:09.502 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-01 19:55:09.503 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-01 19:55:09.505 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-01 19:55:09.506 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-01 19:55:09.508 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.js.core 4 0 2015-10-01 20:04:44.763 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.ui.workbench 4 2 2015-10-01 20:06:06.857 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-01 20:06:06.858 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-01 20:06:06.859 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-01 20:06:11.149 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-01 20:25:21.284 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-01 20:25:28.735 !MESSAGE (Build 4.3.0.1441219724) [ERROR] ERROR | getaddrinfo ENOTFOUND !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 20:25:34.630 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | getaddrinfo ENOTFOUND !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | getaddrinfo ENOTFOUND at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 20:25:34.631 !MESSAGE ERROR | getaddrinfo ENOTFOUND !ENTRY com.appcelerator.titanium.update.core 4 0 2015-10-01 20:25:36.358 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.update.core/debug/sdk_update Error getting release lists from url 'https://f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com/api/mobilesdk/releases/cc6bd18e-6ebf-418b-a97f-ebfc7d381345' !STACK 0 java.net.UnknownHostException: f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:178) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) at java.net.Socket.connect(Socket.java:579) at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:618) at sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:160) at sun.net.NetworkClient.doConnect(NetworkClient.java:180) at sun.net.www.http.HttpClient.openServer(HttpClient.java:432) at sun.net.www.http.HttpClient.openServer(HttpClient.java:527) at sun.net.www.protocol.https.HttpsClient.(HttpsClient.java:275) at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:371) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191) at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:932) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177) at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1300) at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getReleaseListFromURL(TitaniumReleasesUpdater.java:740) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getSDKReleases(TitaniumReleasesUpdater.java:530) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getLatestSDKRelease(TitaniumReleasesUpdater.java:792) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasSDKUpdates(TitaniumReleasesUpdater.java:246) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:202) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 20:25:37.509 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | getaddrinfo ENOTFOUND !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | getaddrinfo ENOTFOUND at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 20:25:37.509 !MESSAGE ERROR | getaddrinfo ENOTFOUND !ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-10-01 20:25:38.379 !MESSAGE Connection to http://preview.appcelerator.com/appcelerator/appc-studio/standalone/update/stable/p2.index failed on preview.appcelerator.com: nodename nor servname provided, or not known. Retry attempt 0 started !STACK 0 java.net.UnknownHostException: preview.appcelerator.com: nodename nor servname provided, or not known at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901) at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293) at java.net.InetAddress.getAllByName0(InetAddress.java:1246) at java.net.InetAddress.getAllByName(InetAddress.java:1162) at java.net.InetAddress.getAllByName(InetAddress.java:1098) at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:259) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:159) at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:144) at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:131) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446) at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1077) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer.access$0(HttpClientRetrieveFileTransfer.java:1068) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer$1.performFileTransfer(HttpClientRetrieveFileTransfer.java:1064) at org.eclipse.ecf.filetransfer.FileTransferJob.run(FileTransferJob.java:73) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-10-01 20:25:38.608 !MESSAGE Unknown Host: http://preview.appcelerator.com/appcelerator/appc-studio/standalone/update/stable/content.xml !STACK 0 java.net.UnknownHostException: preview.appcelerator.com at java.net.InetAddress.getAllByName0(InetAddress.java:1250) at java.net.InetAddress.getAllByName(InetAddress.java:1162) at java.net.InetAddress.getAllByName(InetAddress.java:1098) at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:259) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:159) at org.apache.http.impl.conn.ManagedClientConnectionImpl.open(ManagedClientConnectionImpl.java:304) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446) at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:259) at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 20:25:39.671 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 20:25:39.671 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 20:25:49.056 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appOrganization, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ENOTFOUND\",\"errno\":\"ENOTFOUND\",\"syscall\":\"getaddrinfo\",\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 20:25:49.057 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.launch.contributor.VPCDeployTypeLaunchValidator.validate(VPCDeployTypeLaunchValidator.java:63) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.validateLaunchContributors(NodeAppcCLI.java:635) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:620) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:595) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.build(IOSNodeJSCommandsHelper.java:278) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.installOnDevice(IOSNodeJSCommandsHelper.java:130) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:112) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 20:25:49.057 !MESSAGE ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 20:28:00.855 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appOrganization, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ENOTFOUND\",\"errno\":\"ENOTFOUND\",\"syscall\":\"getaddrinfo\",\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 20:28:00.856 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.launch.contributor.VPCDeployTypeLaunchValidator.validate(VPCDeployTypeLaunchValidator.java:63) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.validateLaunchContributors(NodeAppcCLI.java:635) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:620) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:595) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.build(IOSNodeJSCommandsHelper.java:278) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.runOnSimulator(IOSNodeJSCommandsHelper.java:383) at com.appcelerator.titanium.ios.ui.launching.simulator.IOSSimulatorLaunchConfigurationDelegate.launch(IOSSimulatorLaunchConfigurationDelegate.java:51) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 20:28:00.856 !MESSAGE ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 20:28:02.649 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appOrganization, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ENOTFOUND\",\"errno\":\"ENOTFOUND\",\"syscall\":\"getaddrinfo\",\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 20:28:02.649 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.launch.contributor.VPCDeployTypeLaunchValidator.validate(VPCDeployTypeLaunchValidator.java:63) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.validateLaunchContributors(NodeAppcCLI.java:635) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:620) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:595) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.build(IOSNodeJSCommandsHelper.java:278) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.runOnSimulator(IOSNodeJSCommandsHelper.java:383) at com.appcelerator.titanium.ios.ui.launching.simulator.IOSSimulatorLaunchConfigurationDelegate.launch(IOSSimulatorLaunchConfigurationDelegate.java:51) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 20:28:02.650 !MESSAGE ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} !SESSION 2015-10-01 20:34:14.745 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-10-01 20:34:18.689 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-01 20:34:24.072 !MESSAGE (Build 4.3.0.1441219724) [ERROR] ERROR | getaddrinfo ENOTFOUND !ENTRY com.aptana.git.core 4 1 2015-10-01 20:34:26.976 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 20:34:26.976 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 20:34:26.978 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 20:34:26.979 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 20:34:27.360 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 20:34:27.360 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 20:34:28.861 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | getaddrinfo ENOTFOUND !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | getaddrinfo ENOTFOUND at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 20:34:28.862 !MESSAGE ERROR | getaddrinfo ENOTFOUND !ENTRY com.appcelerator.titanium.update.core 4 0 2015-10-01 20:34:29.838 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.update.core/debug/sdk_update Error getting release lists from url 'https://f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com/api/mobilesdk/releases/f3423514-b886-4e5b-b596-a003123ba8c1' !STACK 0 java.net.UnknownHostException: f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:178) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) at java.net.Socket.connect(Socket.java:579) at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:618) at sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:160) at sun.net.NetworkClient.doConnect(NetworkClient.java:180) at sun.net.www.http.HttpClient.openServer(HttpClient.java:432) at sun.net.www.http.HttpClient.openServer(HttpClient.java:527) at sun.net.www.protocol.https.HttpsClient.(HttpsClient.java:275) at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:371) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191) at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:932) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177) at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1300) at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getReleaseListFromURL(TitaniumReleasesUpdater.java:740) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getSDKReleases(TitaniumReleasesUpdater.java:530) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getLatestSDKRelease(TitaniumReleasesUpdater.java:792) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasSDKUpdates(TitaniumReleasesUpdater.java:246) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:202) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 20:34:30.119 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | getaddrinfo ENOTFOUND !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | getaddrinfo ENOTFOUND at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 20:34:30.119 !MESSAGE ERROR | getaddrinfo ENOTFOUND !ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-10-01 20:34:31.127 !MESSAGE Connection to http://preview.appcelerator.com/appcelerator/appc-studio/standalone/update/stable/p2.index failed on preview.appcelerator.com: nodename nor servname provided, or not known. Retry attempt 0 started !STACK 0 java.net.UnknownHostException: preview.appcelerator.com: nodename nor servname provided, or not known at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901) at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293) at java.net.InetAddress.getAllByName0(InetAddress.java:1246) at java.net.InetAddress.getAllByName(InetAddress.java:1162) at java.net.InetAddress.getAllByName(InetAddress.java:1098) at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:259) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:159) at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:144) at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:131) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446) at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1077) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer.access$0(HttpClientRetrieveFileTransfer.java:1068) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer$1.performFileTransfer(HttpClientRetrieveFileTransfer.java:1064) at org.eclipse.ecf.filetransfer.FileTransferJob.run(FileTransferJob.java:73) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-10-01 20:34:31.359 !MESSAGE Unknown Host: http://preview.appcelerator.com/appcelerator/appc-studio/standalone/update/stable/content.xml !STACK 0 java.net.UnknownHostException: preview.appcelerator.com at java.net.InetAddress.getAllByName0(InetAddress.java:1250) at java.net.InetAddress.getAllByName(InetAddress.java:1162) at java.net.InetAddress.getAllByName(InetAddress.java:1098) at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:259) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:159) at org.apache.http.impl.conn.ManagedClientConnectionImpl.open(ManagedClientConnectionImpl.java:304) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446) at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:259) at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.aptana.git.core 4 1 2015-10-01 20:36:15.999 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 20:36:15.999 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 20:36:16.000 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-01 20:36:16.001 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY org.eclipse.core.jobs 2 2 2015-10-01 21:31:50.520 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-01 21:53:18.518 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-01 21:53:43.813 !MESSAGE (Build 4.3.0.1441219724) [ERROR] ERROR | getaddrinfo ENOTFOUND !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 21:53:49.542 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | getaddrinfo ENOTFOUND !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | getaddrinfo ENOTFOUND at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 21:53:49.544 !MESSAGE ERROR | getaddrinfo ENOTFOUND !ENTRY com.appcelerator.titanium.update.core 4 0 2015-10-01 21:53:51.045 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.update.core/debug/sdk_update Error getting release lists from url 'https://f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com/api/mobilesdk/releases/3d45699b-b3f6-4515-9307-9b6f33e9129a' !STACK 0 java.net.UnknownHostException: f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:178) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) at java.net.Socket.connect(Socket.java:579) at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:618) at sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:160) at sun.net.NetworkClient.doConnect(NetworkClient.java:180) at sun.net.www.http.HttpClient.openServer(HttpClient.java:432) at sun.net.www.http.HttpClient.openServer(HttpClient.java:527) at sun.net.www.protocol.https.HttpsClient.(HttpsClient.java:275) at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:371) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191) at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:932) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177) at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1300) at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getReleaseListFromURL(TitaniumReleasesUpdater.java:740) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getSDKReleases(TitaniumReleasesUpdater.java:530) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getLatestSDKRelease(TitaniumReleasesUpdater.java:792) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasSDKUpdates(TitaniumReleasesUpdater.java:246) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:202) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 21:53:52.436 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | getaddrinfo ENOTFOUND !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | getaddrinfo ENOTFOUND at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 21:53:52.436 !MESSAGE ERROR | getaddrinfo ENOTFOUND !ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-10-01 21:53:52.884 !MESSAGE Connection to http://preview.appcelerator.com/appcelerator/appc-studio/standalone/update/stable/p2.index failed on preview.appcelerator.com: nodename nor servname provided, or not known. Retry attempt 0 started !STACK 0 java.net.UnknownHostException: preview.appcelerator.com: nodename nor servname provided, or not known at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901) at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293) at java.net.InetAddress.getAllByName0(InetAddress.java:1246) at java.net.InetAddress.getAllByName(InetAddress.java:1162) at java.net.InetAddress.getAllByName(InetAddress.java:1098) at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:259) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:159) at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:144) at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:131) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446) at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1077) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer.access$0(HttpClientRetrieveFileTransfer.java:1068) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer$1.performFileTransfer(HttpClientRetrieveFileTransfer.java:1064) at org.eclipse.ecf.filetransfer.FileTransferJob.run(FileTransferJob.java:73) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-10-01 21:53:53.116 !MESSAGE Unknown Host: http://preview.appcelerator.com/appcelerator/appc-studio/standalone/update/stable/content.xml !STACK 0 java.net.UnknownHostException: preview.appcelerator.com at java.net.InetAddress.getAllByName0(InetAddress.java:1250) at java.net.InetAddress.getAllByName(InetAddress.java:1162) at java.net.InetAddress.getAllByName(InetAddress.java:1098) at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:259) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:159) at org.apache.http.impl.conn.ManagedClientConnectionImpl.open(ManagedClientConnectionImpl.java:304) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446) at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:259) at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 21:53:54.558 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 21:53:54.559 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-01 21:54:50.252 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-10-01 21:54:50.253 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-01 21:57:18.073 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-01 22:01:33.206 !MESSAGE (Build 4.3.0.1441219724) [ERROR] ERROR | getaddrinfo ENOTFOUND !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 22:01:39.329 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | getaddrinfo ENOTFOUND !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | getaddrinfo ENOTFOUND at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 22:01:39.331 !MESSAGE ERROR | getaddrinfo ENOTFOUND !ENTRY com.appcelerator.titanium.update.core 4 0 2015-10-01 22:01:40.568 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.update.core/debug/sdk_update Error getting release lists from url 'https://f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com/api/mobilesdk/releases/6769c9de-4a12-4238-9df1-6a8f8cc35d1a' !STACK 0 java.net.UnknownHostException: f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:178) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) at java.net.Socket.connect(Socket.java:579) at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:618) at sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:160) at sun.net.NetworkClient.doConnect(NetworkClient.java:180) at sun.net.www.http.HttpClient.openServer(HttpClient.java:432) at sun.net.www.http.HttpClient.openServer(HttpClient.java:527) at sun.net.www.protocol.https.HttpsClient.(HttpsClient.java:275) at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:371) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191) at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:932) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177) at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1300) at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getReleaseListFromURL(TitaniumReleasesUpdater.java:740) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getSDKReleases(TitaniumReleasesUpdater.java:530) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getLatestSDKRelease(TitaniumReleasesUpdater.java:792) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasSDKUpdates(TitaniumReleasesUpdater.java:246) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:202) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 22:01:42.056 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | getaddrinfo ENOTFOUND !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | getaddrinfo ENOTFOUND at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 22:01:42.057 !MESSAGE ERROR | getaddrinfo ENOTFOUND !ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-10-01 22:01:42.249 !MESSAGE Connection to http://preview.appcelerator.com/appcelerator/appc-studio/standalone/update/stable/p2.index failed on preview.appcelerator.com: nodename nor servname provided, or not known. Retry attempt 0 started !STACK 0 java.net.UnknownHostException: preview.appcelerator.com: nodename nor servname provided, or not known at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901) at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293) at java.net.InetAddress.getAllByName0(InetAddress.java:1246) at java.net.InetAddress.getAllByName(InetAddress.java:1162) at java.net.InetAddress.getAllByName(InetAddress.java:1098) at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:259) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:159) at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:144) at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:131) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446) at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1077) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer.access$0(HttpClientRetrieveFileTransfer.java:1068) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer$1.performFileTransfer(HttpClientRetrieveFileTransfer.java:1064) at org.eclipse.ecf.filetransfer.FileTransferJob.run(FileTransferJob.java:73) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-10-01 22:01:42.489 !MESSAGE Unknown Host: http://preview.appcelerator.com/appcelerator/appc-studio/standalone/update/stable/content.xml !STACK 0 java.net.UnknownHostException: preview.appcelerator.com at java.net.InetAddress.getAllByName0(InetAddress.java:1250) at java.net.InetAddress.getAllByName(InetAddress.java:1162) at java.net.InetAddress.getAllByName(InetAddress.java:1098) at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:259) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:159) at org.apache.http.impl.conn.ManagedClientConnectionImpl.open(ManagedClientConnectionImpl.java:304) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446) at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:259) at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 22:01:43.866 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 22:01:43.866 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 22:02:30.728 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appOrganization, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ENOTFOUND\",\"errno\":\"ENOTFOUND\",\"syscall\":\"getaddrinfo\",\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 22:02:30.729 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.launch.contributor.VPCDeployTypeLaunchValidator.validate(VPCDeployTypeLaunchValidator.java:63) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.validateLaunchContributors(NodeAppcCLI.java:635) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:620) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:595) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.build(IOSNodeJSCommandsHelper.java:278) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.installOnDevice(IOSNodeJSCommandsHelper.java:130) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:112) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 22:02:30.730 !MESSAGE ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} !SESSION 2015-10-01 22:07:02.294 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-01 22:07:10.094 !MESSAGE (Build 4.3.0.1441219724) [ERROR] ERROR | getaddrinfo ENOTFOUND !ENTRY com.appcelerator.titanium.update.core 4 0 2015-10-01 22:07:17.945 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.update.core/debug/sdk_update Error getting release lists from url 'https://f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com/api/mobilesdk/releases/9c74ff89-1b74-449b-9921-ca94939cd787' !STACK 0 java.net.UnknownHostException: f4df0833a1352ef193633d85356e6e80ffcdcdb7.cloudapp-enterprise.appcelerator.com at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:178) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) at java.net.Socket.connect(Socket.java:579) at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:618) at sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:160) at sun.net.NetworkClient.doConnect(NetworkClient.java:180) at sun.net.www.http.HttpClient.openServer(HttpClient.java:432) at sun.net.www.http.HttpClient.openServer(HttpClient.java:527) at sun.net.www.protocol.https.HttpsClient.(HttpsClient.java:275) at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:371) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191) at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:932) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177) at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1300) at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getReleaseListFromURL(TitaniumReleasesUpdater.java:740) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getSDKReleases(TitaniumReleasesUpdater.java:530) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getLatestSDKRelease(TitaniumReleasesUpdater.java:792) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasSDKUpdates(TitaniumReleasesUpdater.java:246) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:202) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 22:07:17.967 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | getaddrinfo ENOTFOUND !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | getaddrinfo ENOTFOUND at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 22:07:17.968 !MESSAGE ERROR | getaddrinfo ENOTFOUND !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 22:07:19.509 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | getaddrinfo ENOTFOUND !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | getaddrinfo ENOTFOUND at com.appcelerator.titanium360.internal.core.Titanium360User.doGetOrganizations(Titanium360User.java:284) at com.appcelerator.titanium360.internal.core.Titanium360User.access$0(Titanium360User.java:276) at com.appcelerator.titanium360.internal.core.Titanium360User$1.run(Titanium360User.java:174) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 22:07:19.509 !MESSAGE ERROR | getaddrinfo ENOTFOUND !ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-10-01 22:07:19.685 !MESSAGE Connection to http://preview.appcelerator.com/appcelerator/appc-studio/standalone/update/stable/p2.index failed on preview.appcelerator.com: nodename nor servname provided, or not known. Retry attempt 0 started !STACK 0 java.net.UnknownHostException: preview.appcelerator.com: nodename nor servname provided, or not known at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901) at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293) at java.net.InetAddress.getAllByName0(InetAddress.java:1246) at java.net.InetAddress.getAllByName(InetAddress.java:1162) at java.net.InetAddress.getAllByName(InetAddress.java:1098) at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:259) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:159) at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:144) at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:131) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446) at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1077) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer.access$0(HttpClientRetrieveFileTransfer.java:1068) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransfer$1.performFileTransfer(HttpClientRetrieveFileTransfer.java:1064) at org.eclipse.ecf.filetransfer.FileTransferJob.run(FileTransferJob.java:73) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-10-01 22:07:19.918 !MESSAGE Unknown Host: http://preview.appcelerator.com/appcelerator/appc-studio/standalone/update/stable/content.xml !STACK 0 java.net.UnknownHostException: preview.appcelerator.com at java.net.InetAddress.getAllByName0(InetAddress.java:1250) at java.net.InetAddress.getAllByName(InetAddress.java:1162) at java.net.InetAddress.getAllByName(InetAddress.java:1098) at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:259) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:159) at org.apache.http.impl.conn.ManagedClientConnectionImpl.open(ManagedClientConnectionImpl.java:304) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446) at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) at org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:259) at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.aptana.git.core 4 1 2015-10-01 22:07:20.616 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 22:07:20.617 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 22:07:20.617 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-01 22:07:20.617 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 22:07:20.654 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-01 22:07:20.655 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 22:08:41.176 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appOrganization, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ENOTFOUND\",\"errno\":\"ENOTFOUND\",\"syscall\":\"getaddrinfo\",\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 22:08:41.177 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.launch.contributor.VPCDeployTypeLaunchValidator.validate(VPCDeployTypeLaunchValidator.java:63) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.validateLaunchContributors(NodeAppcCLI.java:635) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:620) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:595) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.build(IOSNodeJSCommandsHelper.java:278) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.installOnDevice(IOSNodeJSCommandsHelper.java:130) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:112) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 22:08:41.177 !MESSAGE ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 22:08:42.492 !MESSAGE (Build 4.3.0.201509151348) [ERROR] API Request: appOrganization, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"ERROR | {\"code\":\"ENOTFOUND\",\"errno\":\"ENOTFOUND\",\"syscall\":\"getaddrinfo\",\"success\":false}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-01 22:08:42.493 !MESSAGE (Build 4.3.0.201509151348) [ERROR] ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} !STACK 1 org.eclipse.core.runtime.CoreException: ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.launch.contributor.VPCDeployTypeLaunchValidator.validate(VPCDeployTypeLaunchValidator.java:63) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.validateLaunchContributors(NodeAppcCLI.java:635) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:620) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:595) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.build(IOSNodeJSCommandsHelper.java:278) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.installOnDevice(IOSNodeJSCommandsHelper.java:130) at com.appcelerator.titanium.ios.internal.ui.launching.device.IOSInstallerLaunchConfigurationDelegate.launch(IOSInstallerLaunchConfigurationDelegate.java:112) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-01 22:08:42.493 !MESSAGE ERROR | {"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo","success":false} !ENTRY org.eclipse.core.jobs 2 2 2015-10-01 22:10:18.561 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-10-01 22:10:18.562 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !SESSION 2015-10-02 15:53:45.123 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-10-02 15:54:03.925 !MESSAGE (Build 4.3.0.1441219724) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-02 15:54:03.930 !MESSAGE (Build 4.3.0.1441219724) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-02 15:55:05.149 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-02 15:55:05.154 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-02 15:55:13.335 !MESSAGE (Build 4.3.0.201509151348) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-02 15:55:13.367 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-02 15:55:13.370 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-02 15:55:13.372 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-02 15:55:13.373 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-02 15:55:13.375 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-02 15:55:13.376 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-02 15:55:13.377 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-02 15:57:29.589 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-02 15:57:29.590 !MESSAGE (Build 4.3.0.201509151348) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.core 4 1 2015-10-02 15:57:49.279 !MESSAGE sudo: a password is required !ENTRY com.aptana.core 0 0 2015-10-02 15:57:54.081 !MESSAGE !ENTRY org.eclipse.core.jobs 2 2 2015-10-02 15:58:17.006 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-10-02 15:58:17.006 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-02 15:58:17.346 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.scripting 4 0 2015-10-02 15:58:34.751 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Failed to load bundle /Applications/Appcelerator Studio/plugins/com.appcelerator.titanium.core_3.1.2.1442811112/bundles/titanium_mobile.ruble !STACK 0 Can't construct a java object for !ruby/object:Ruble::Bundle; exception=Invalid tag: !ruby/object:Ruble::Bundle in "", line 1, column 5: --- !ruby/object:Ruble::Bundle ^ at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:325) at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:181) at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:140) at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:126) at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:296) at org.yaml.snakeyaml.Yaml.load(Yaml.java:290) at com.aptana.scripting.model.BundleCacher.load(BundleCacher.java:328) at com.aptana.scripting.model.BundleCacher.load(BundleCacher.java:286) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:110) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) Caused by: org.yaml.snakeyaml.error.YAMLException: Invalid tag: !ruby/object:Ruble::Bundle at org.yaml.snakeyaml.nodes.Tag.getClassName(Tag.java:108) at org.yaml.snakeyaml.constructor.Constructor.getClassForNode(Constructor.java:620) at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.getConstructor(Constructor.java:313) at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:323) ... 9 more !ENTRY com.appcelerator.titanium.core 4 0 2015-10-02 15:58:44.727 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-02 15:58:44.728 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-02 16:05:36.831 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-02 16:06:35.229 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-02 16:07:18.172 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-02 16:07:18.174 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 4 2015-10-02 16:07:42.518 !MESSAGE Conflicting handlers for org.eclipse.ui.navigate.backwardHistory: {ActionHandler(org.eclipse.ui.internal.dialogs.PreferencePageHistory$1@5cbe5690)} vs {ActionHandler(org.eclipse.ui.internal.NavigationHistoryAction@210e901e)} !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-02 16:07:44.686 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-02 16:07:44.703 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-02 16:07:44.705 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-02 16:07:44.706 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-02 16:07:44.707 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-02 16:07:44.709 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-02 16:07:44.710 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-02 16:07:44.711 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 4 2 2015-10-02 16:46:45.037 !MESSAGE An internal error occurred during: "File Search". !STACK 0 org.eclipse.swt.SWTException: Invalid thread access at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:574) at org.eclipse.swt.custom.CTabItem.getControl(CTabItem.java:163) at org.eclipse.ui.part.MultiPageEditorPart.getControl(MultiPageEditorPart.java:607) at com.appcelerator.titanium.ui.ide.tiappEditor.TiAppEditor.getAdapter(TiAppEditor.java:379) at org.eclipse.search2.internal.ui.text.EditorAnnotationManager.createHighlighter(EditorAnnotationManager.java:182) at org.eclipse.search2.internal.ui.text.EditorAnnotationManager.addAnnotations(EditorAnnotationManager.java:241) at org.eclipse.search2.internal.ui.text.EditorAnnotationManager.searchResultChanged(EditorAnnotationManager.java:128) at org.eclipse.search.ui.text.AbstractTextSearchResult.fireChange(AbstractTextSearchResult.java:265) at org.eclipse.search.ui.text.AbstractTextSearchResult.addMatches(AbstractTextSearchResult.java:105) at org.eclipse.search.internal.ui.text.FileSearchQuery$TextSearchResultCollector.flushMatches(FileSearchQuery.java:147) at org.eclipse.search.internal.ui.text.FileSearchQuery$TextSearchResultCollector.acceptFile(FileSearchQuery.java:60) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:247) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.aptana.js.core 4 0 2015-10-02 16:47:14.832 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.core.resources 4 380 2015-10-02 16:48:53.612 !MESSAGE The resource tree is locked for modifications. !ENTRY org.eclipse.core.resources 4 380 2015-10-02 16:48:53.613 !MESSAGE The resource tree is locked for modifications. !ENTRY org.eclipse.core.resources 4 380 2015-10-02 16:49:31.080 !MESSAGE The resource tree is locked for modifications. !ENTRY org.eclipse.core.resources 4 380 2015-10-02 16:49:31.081 !MESSAGE The resource tree is locked for modifications. !ENTRY org.eclipse.core.jobs 2 2 2015-10-02 16:53:15.939 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-02 17:55:36.278 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-02 17:55:56.976 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-02 17:55:56.982 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-02 17:56:21.526 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-02 17:56:21.529 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-02 17:56:21.531 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-02 17:56:21.532 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-02 17:56:21.533 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-02 17:56:21.553 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-02 17:56:21.554 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-02 17:56:21.555 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-10-02 17:59:48.659 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-10-02 17:59:48.660 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.usage.internal.DefaultAnalyticsEventHandler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-10-02 17:59:48.661 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !SESSION 2015-10-02 23:50:06.425 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-02 23:50:33.036 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-02 23:50:33.042 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-02 23:51:08.307 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-02 23:51:08.309 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-02 23:51:08.315 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-02 23:51:08.317 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-02 23:51:08.336 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-02 23:51:08.338 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-02 23:51:08.339 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-02 23:51:08.341 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui.workbench 4 2 2015-10-03 00:00:55.136 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-03 00:00:55.139 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-03 00:00:55.139 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-03 00:00:58.771 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-03 00:02:25.103 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 00:02:58.002 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 00:02:58.007 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-03 00:03:18.428 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 00:03:29.855 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 00:03:29.858 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 00:03:29.862 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 00:03:29.863 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 00:03:29.885 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 00:03:29.890 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 00:03:29.891 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 00:03:29.893 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-10-03 00:16:35.090 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-03 13:01:43.823 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:02:04.468 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:02:04.469 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 13:02:30.155 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 13:02:30.181 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 13:02:30.185 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 13:02:30.186 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 13:02:30.187 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 13:02:30.189 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 13:02:30.191 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 13:02:30.192 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:08:14.317 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:08:14.319 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 4 2 2015-10-03 13:10:30.317 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:437) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:309) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:225) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:222) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:242) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-03 13:10:31.842 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-03 13:29:00.974 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:29:21.934 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:29:21.936 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 13:29:47.922 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 13:29:47.942 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 13:29:47.946 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 13:29:47.947 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 13:29:47.949 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 13:29:47.951 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 13:29:47.952 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 13:29:47.953 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui.workbench 4 2 2015-10-03 13:33:53.028 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-03 13:33:53.030 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-03 13:33:53.030 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-03 13:33:57.359 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.usage.internal.DefaultAnalyticsEventHandler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-10-03 13:33:57.359 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-03 13:36:38.067 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:37:12.997 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:37:12.999 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 13:37:37.330 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 13:37:37.333 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 13:37:37.338 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 13:37:37.339 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 13:37:37.341 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 13:37:37.343 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 13:37:37.345 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 13:37:37.347 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-10-03 13:42:50.167 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-03 13:44:53.209 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:46:06.912 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:46:06.914 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-03 13:48:00.358 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:5000) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5378) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:94) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-03 13:48:03.507 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:57:01.867 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:57:01.869 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:57:59.664 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:57:59.664 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:59:45.338 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 13:59:45.339 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-03 14:00:21.834 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-03 14:00:26.160 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 14:02:40.954 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 14:02:40.955 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-03 14:04:01.559 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-03 19:50:15.053 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-10-03 19:50:25.089 !MESSAGE (Build 4.3.1.1442888904) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-03 19:50:25.094 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 19:52:32.141 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 19:52:32.142 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 19:53:03.396 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 19:53:03.423 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 19:53:03.426 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 19:53:03.427 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 19:53:03.428 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 19:53:03.429 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 19:53:03.431 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 19:53:03.432 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:00:09.519 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:00:09.521 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-03 20:01:28.891 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-10-03 20:01:36.584 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:01:44.888 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:01:44.889 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 20:02:16.268 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 20:02:16.278 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 20:02:16.282 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 20:02:16.283 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 20:02:16.284 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 20:02:16.285 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 20:02:16.287 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 20:02:16.288 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:04:01.930 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:04:01.931 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:10:19.398 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:10:19.399 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:11:18.857 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:11:18.858 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:12:36.618 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:12:36.619 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:14:10.796 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:14:10.797 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:15:27.411 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:15:27.412 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:16:30.240 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:16:30.241 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:18:04.402 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:18:04.403 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:22:01.444 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:22:01.445 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:23:48.494 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:23:48.495 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:25:15.570 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:25:15.572 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:27:03.335 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:27:03.336 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:32:31.356 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:32:31.358 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:33:20.027 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:33:20.029 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:36:26.118 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:36:26.119 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:37:33.406 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:37:33.408 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:40:07.783 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:40:07.784 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:40:51.521 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:40:51.522 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:42:58.667 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:42:58.668 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:44:37.702 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:44:37.703 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:45:33.020 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:45:33.022 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:49:36.112 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:49:36.113 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-03 20:50:54.717 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-10-03 20:50:59.504 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:51:09.711 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:51:09.716 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-03 20:51:12.256 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 20:51:12.257 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 20:51:12.257 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 20:51:12.257 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 20:51:43.751 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 20:51:43.769 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 20:51:43.773 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 20:51:43.774 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 20:51:43.775 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 20:51:43.777 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 20:51:43.778 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 20:51:43.780 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-10-03 20:55:58.119 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:58:39.444 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 20:58:39.444 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-03 21:02:07.930 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-03 21:28:10.643 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 21:28:38.175 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 21:28:38.180 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 21:29:05.463 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 21:29:05.483 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 21:29:05.487 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 21:29:05.490 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 21:29:05.492 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 21:29:05.493 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 21:29:05.494 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 21:29:05.496 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-10-03 21:35:15.403 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-03 21:35:53.509 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 21:36:13.655 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 21:36:13.659 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 21:36:37.065 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 21:36:37.088 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 21:36:37.091 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 21:36:37.093 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 21:36:37.094 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 21:36:37.096 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 21:36:37.097 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 21:36:37.099 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui.workbench 4 2 2015-10-03 21:40:57.713 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-03 21:40:57.717 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-03 21:40:57.717 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-03 21:41:02.000 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-10-03 21:41:02.001 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.usage.internal.DefaultAnalyticsEventHandler$1 !SESSION 2015-10-03 21:43:23.370 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 21:43:43.227 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 21:43:43.229 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 21:44:10.718 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 21:44:10.735 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 21:44:10.738 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 21:44:10.740 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 21:44:10.741 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 21:44:10.743 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 21:44:10.744 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 21:44:10.745 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-10-03 21:52:34.211 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-10-03 21:52:49.926 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 21:52:49.926 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 21:52:49.927 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 21:52:49.927 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 21:52:50.442 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 21:52:50.444 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 21:53:17.771 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 21:53:17.786 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 21:53:17.789 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 21:53:17.790 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 21:53:17.792 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 21:53:17.794 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 21:53:17.795 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 21:53:17.797 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-10-03 21:57:32.628 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:5000) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5378) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:94) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-03 21:57:50.118 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.jobs 2 2 2015-10-03 22:00:03.714 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-03 22:06:31.909 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-10-03 22:07:08.468 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 22:07:08.468 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 22:07:08.468 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 22:07:08.468 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 22:07:08.498 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 22:07:08.498 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 22:07:40.745 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 22:07:40.772 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 22:07:40.776 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 22:07:40.777 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 22:07:40.778 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 22:07:40.780 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 22:07:40.782 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 22:07:40.783 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 22:10:23.073 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 22:10:23.074 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-03 22:11:52.818 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-10-03 22:12:10.331 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 22:12:10.331 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 22:12:10.331 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 22:12:10.332 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 22:12:11.274 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 22:12:11.279 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-03 22:12:38.481 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-03 22:12:38.513 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-03 22:12:38.516 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-03 22:12:38.518 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-03 22:12:38.519 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-03 22:12:38.521 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-03 22:12:38.522 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-03 22:12:38.523 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 22:14:37.426 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 22:14:37.428 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-03 22:17:31.087 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 22:17:48.947 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 22:17:48.952 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-03 22:17:49.146 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 22:17:49.146 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 22:17:49.146 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-03 22:17:49.146 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 22:21:07.395 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-03 22:21:07.396 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-03 22:23:45.132 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.jobs 2 2 2015-10-03 22:24:45.346 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-04 12:56:10.684 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 12:56:32.911 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 12:56:32.916 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-04 12:57:00.717 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-04 12:57:00.721 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-04 12:57:00.725 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-04 12:57:00.727 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-04 12:57:00.728 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-04 12:57:00.730 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-04 12:57:00.747 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-04 12:57:00.749 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 12:58:08.050 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 12:58:08.052 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:00:09.546 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:00:09.547 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui.workbench 4 2 2015-10-04 13:01:24.032 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-04 13:01:24.035 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-04 13:01:24.035 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-04 13:01:33.876 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-04 13:05:57.661 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:06:16.664 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:06:16.665 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-04 13:06:43.241 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-04 13:06:43.265 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-04 13:06:43.268 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-04 13:06:43.269 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-04 13:06:43.271 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-04 13:06:43.272 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-04 13:06:43.274 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-04 13:06:43.275 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:08:31.051 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:08:31.052 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 4 2 2015-10-04 13:11:12.361 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:437) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:309) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:225) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:222) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:242) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-04 13:11:16.596 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-04 13:11:48.149 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:12:08.574 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:12:08.578 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-04 13:12:34.864 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-04 13:12:34.878 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-04 13:12:34.883 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-04 13:12:34.884 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-04 13:12:34.886 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-04 13:12:34.887 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-04 13:12:34.889 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-04 13:12:34.890 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-10-04 13:13:35.498 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-10-04 13:13:35.498 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-04 13:18:42.362 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.scripting 4 0 2015-10-04 13:19:15.936 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Failed to load bundle /Applications/Appcelerator Studio/plugins/com.appcelerator.titanium.core_3.1.2.1442811112/bundles/titanium_mobile.ruble !STACK 0 Can't construct a java object for !ruby/object:Ruble::Bundle; exception=Invalid tag: !ruby/object:Ruble::Bundle in "", line 1, column 5: --- !ruby/object:Ruble::Bundle ^ at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:325) at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:181) at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:140) at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:126) at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:296) at org.yaml.snakeyaml.Yaml.load(Yaml.java:290) at com.aptana.scripting.model.BundleCacher.load(BundleCacher.java:328) at com.aptana.scripting.model.BundleCacher.load(BundleCacher.java:286) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:110) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) Caused by: org.yaml.snakeyaml.error.YAMLException: Invalid tag: !ruby/object:Ruble::Bundle at org.yaml.snakeyaml.nodes.Tag.getClassName(Tag.java:108) at org.yaml.snakeyaml.constructor.Constructor.getClassForNode(Constructor.java:620) at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.getConstructor(Constructor.java:313) at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:323) ... 9 more !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:19:24.671 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:19:24.673 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-04 13:19:29.676 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-04 13:19:29.679 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-04 13:19:29.682 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-04 13:19:29.684 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-04 13:19:29.686 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-04 13:19:29.687 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-04 13:19:29.688 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-04 13:19:29.689 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:20:23.939 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:20:23.940 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui.workbench 4 2 2015-10-04 13:27:30.236 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-04 13:27:30.239 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-04 13:27:30.239 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-04 13:27:35.180 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-04 13:29:24.490 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:29:52.667 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:29:52.671 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-04 13:29:55.703 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-04 13:29:55.706 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-04 13:29:55.710 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-04 13:29:55.715 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-04 13:29:55.718 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-04 13:29:55.746 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-04 13:29:55.748 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-04 13:29:55.751 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:32:09.202 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:32:09.203 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:35:39.130 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:35:39.131 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:43:36.132 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:43:36.133 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:44:06.273 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:44:06.274 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:45:27.235 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:45:27.236 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:45:51.443 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:45:51.445 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:46:59.714 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:46:59.715 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:47:31.236 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:47:31.238 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:50:08.717 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:50:08.719 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-04 13:51:18.837 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:5000) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5378) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:94) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:51:49.774 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:51:49.775 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:53:25.909 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:53:25.910 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:54:05.801 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:54:05.801 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:54:55.405 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:54:55.406 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:56:36.810 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 13:56:36.811 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:01:38.125 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:01:38.126 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:03:33.837 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:03:33.838 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:11:23.679 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:11:23.680 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:13:26.343 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:13:26.344 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:15:00.401 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:15:00.402 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:20:29.976 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:20:29.977 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:22:06.931 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:22:06.932 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:25:29.216 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:25:29.216 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:27:58.582 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:27:58.583 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:29:17.493 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:29:17.494 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:34:24.956 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:34:24.957 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:35:44.177 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:35:44.178 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:36:48.947 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:36:48.948 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:37:22.789 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:37:22.791 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:38:02.518 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:38:02.520 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:46:18.600 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:46:18.601 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:46:52.287 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:46:52.288 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:48:50.904 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:48:50.905 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-10-04 14:50:37.121 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:52:58.126 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:52:58.127 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:54:38.223 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 14:54:38.224 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:01:12.728 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:01:12.728 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-04 15:03:08.245 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:5000) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5378) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:94) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:04:06.055 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:04:06.056 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:06:16.192 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:06:16.193 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:07:05.872 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:07:05.872 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:07:35.965 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:07:35.965 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:09:07.076 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:09:07.077 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:09:41.896 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:09:41.897 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:10:22.143 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:10:22.143 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:10:57.081 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:10:57.082 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:14:43.639 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 15:14:43.640 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-04 15:14:59.257 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-04 16:27:40.244 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:28:00.442 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:28:00.447 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:29:00.038 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:29:00.039 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:33:12.336 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:33:12.337 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui.workbench 4 2 2015-10-04 16:33:37.784 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-04 16:33:37.786 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-04 16:33:37.786 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-04 16:33:42.667 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-04 16:33:57.815 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:34:15.628 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:34:15.633 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:35:05.542 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:35:05.544 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-04 16:38:08.363 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-04 16:38:19.397 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:38:37.780 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:38:37.784 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-04 16:38:59.752 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-04 16:38:59.779 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-04 16:38:59.782 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-04 16:38:59.783 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-04 16:38:59.785 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-04 16:38:59.786 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-04 16:38:59.788 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-04 16:38:59.789 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:42:18.374 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:42:18.376 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:49:37.603 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:49:37.604 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:52:03.661 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:52:03.662 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:59:11.545 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 16:59:11.546 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:00:46.795 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:00:46.795 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:02:11.511 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:02:11.511 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:05:11.926 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:05:11.926 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:07:01.211 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:07:01.212 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:08:46.484 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:08:46.485 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:10:28.679 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:10:28.680 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:10:47.478 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:10:47.479 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.core 4 0 2015-10-04 17:12:13.398 !MESSAGE (Build 4.3.1.201509302304) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKLocator.initialize(TitaniumMobileSDKLocator.java:92) at com.appcelerator.titanium.core.mobile.SDKLocator.lazyInitialize(SDKLocator.java:237) at com.appcelerator.titanium.core.mobile.SDKLocator.getAvailable(SDKLocator.java:365) at com.appcelerator.titanium.core.mobile.SDKLocator.findVersion(SDKLocator.java:409) at com.appcelerator.titanium.core.mobile.SDKLocator.findVersion(SDKLocator.java:393) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:68) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.editor.tss.internal.text.TSSHover.getHoverInfo2(TSSHover.java:95) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverInfo2(CommonSourceViewerConfiguration.java:687) at org.eclipse.jface.text.TextViewerHoverManager$4.run(TextViewerHoverManager.java:166) !ENTRY org.eclipse.jface.text 4 0 2015-10-04 17:12:13.403 !MESSAGE Unexpected runtime error while computing a text hover !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKLocator.initialize(TitaniumMobileSDKLocator.java:94) at com.appcelerator.titanium.core.mobile.SDKLocator.lazyInitialize(SDKLocator.java:237) at com.appcelerator.titanium.core.mobile.SDKLocator.getAvailable(SDKLocator.java:365) at com.appcelerator.titanium.core.mobile.SDKLocator.findVersion(SDKLocator.java:409) at com.appcelerator.titanium.core.mobile.SDKLocator.findVersion(SDKLocator.java:393) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:68) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.editor.tss.internal.text.TSSHover.getHoverInfo2(TSSHover.java:95) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverInfo2(CommonSourceViewerConfiguration.java:687) at org.eclipse.jface.text.TextViewerHoverManager$4.run(TextViewerHoverManager.java:166) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:12:17.430 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:12:17.431 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:12:18.597 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:12:18.598 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:12:18.795 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.getQueryHelper(AlloyViewValidator.java:431) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:224) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:12:18.795 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:12:18.813 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:12:18.813 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:12:30.584 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.initialReconcile(CommonReconcilingStrategy.java:149) at com.aptana.editor.common.text.reconciler.CommonReconciler.initialProcess(CommonReconciler.java:188) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:173) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:12:30.584 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:12:33.496 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:12:33.497 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:12:33.510 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverInfo2(CommonSourceViewerConfiguration.java:687) at org.eclipse.jface.text.TextViewerHoverManager$4.run(TextViewerHoverManager.java:166) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:12:33.510 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:12:35.168 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:12:35.168 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:12:37.366 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:12:37.366 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:12:37.535 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:614) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:525) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:497) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:263) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:12:37.535 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:12:37.709 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:12:37.709 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:13:03.494 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.initialReconcile(CommonReconcilingStrategy.java:149) at com.aptana.editor.common.text.reconciler.CommonReconciler.initialProcess(CommonReconciler.java:188) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:173) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:13:03.495 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:13:08.403 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.editor.tss.internal.text.TSSHover.getHoverInfo2(TSSHover.java:95) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverInfo2(CommonSourceViewerConfiguration.java:687) at org.eclipse.jface.text.TextViewerHoverManager$4.run(TextViewerHoverManager.java:166) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:13:08.404 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:13:10.712 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.editor.tss.internal.text.TSSHover.getHoverInfo2(TSSHover.java:95) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverInfo2(CommonSourceViewerConfiguration.java:687) at org.eclipse.jface.text.TextViewerHoverManager$4.run(TextViewerHoverManager.java:166) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:13:10.712 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:13:14.077 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:13:14.078 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:13:16.112 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:13:16.112 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:13:18.708 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:13:18.708 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:13:18.871 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.getQueryHelper(AlloyViewValidator.java:431) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:224) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:13:18.871 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:13:18.891 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:13:18.891 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:13:19.145 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:13:19.146 !MESSAGE Titanium SDK not found !ENTRY org.eclipse.core.jobs 4 2 2015-10-04 17:13:56.939 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:437) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:309) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:225) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:222) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:242) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-04 17:14:01.165 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-04 17:14:09.432 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:14:28.425 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:14:28.430 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:15:12.917 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:15:12.919 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:17:47.615 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:17:47.616 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:20:37.670 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:20:37.671 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-04 17:20:54.267 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:22:06.554 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:22:06.554 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:24:15.994 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:24:15.995 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:25:28.709 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:25:28.710 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-04 17:35:55.923 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-04 17:36:22.549 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-04 17:36:26.191 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:37:52.238 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:37:52.239 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.alloy.core 4 0 2015-10-04 17:39:01.052 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Failed to parse for file:/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/AlumniConnect/app/views/clubs_window.xml for Alloy XML validation !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.createWarning(AlloyViewValidator.java:424) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.checkifEventUnused(AlloyViewValidator.java:321) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.access$0(AlloyViewValidator.java:304) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator$1.include(AlloyViewValidator.java:242) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator$1.include(AlloyViewValidator.java:1) at com.aptana.parsing.util.ParseUtil.treeApply(ParseUtil.java:155) at com.aptana.parsing.util.ParseUtil.treeApply(ParseUtil.java:121) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:230) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:40:13.953 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:40:13.954 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:41:22.075 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:41:22.077 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:43:07.382 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:43:07.382 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:44:33.653 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:44:33.654 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:45:00.408 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:45:00.409 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:47:31.764 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:47:31.766 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:49:43.296 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:49:43.297 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:51:38.116 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:51:38.117 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.core 4 0 2015-10-04 17:52:22.910 !MESSAGE (Build 4.3.1.201509302304) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKLocator.initialize(TitaniumMobileSDKLocator.java:92) at com.appcelerator.titanium.core.mobile.SDKLocator.lazyInitialize(SDKLocator.java:237) at com.appcelerator.titanium.core.mobile.SDKLocator.getAvailable(SDKLocator.java:365) at com.appcelerator.titanium.core.mobile.SDKLocator.findVersion(SDKLocator.java:409) at com.appcelerator.titanium.core.mobile.SDKLocator.findVersion(SDKLocator.java:393) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:68) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.editor.tss.internal.text.TSSHover.getHoverInfo2(TSSHover.java:95) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverInfo2(CommonSourceViewerConfiguration.java:687) at org.eclipse.jface.text.TextViewerHoverManager$4.run(TextViewerHoverManager.java:166) !ENTRY org.eclipse.jface.text 4 0 2015-10-04 17:52:22.912 !MESSAGE Unexpected runtime error while computing a text hover !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKLocator.initialize(TitaniumMobileSDKLocator.java:94) at com.appcelerator.titanium.core.mobile.SDKLocator.lazyInitialize(SDKLocator.java:237) at com.appcelerator.titanium.core.mobile.SDKLocator.getAvailable(SDKLocator.java:365) at com.appcelerator.titanium.core.mobile.SDKLocator.findVersion(SDKLocator.java:409) at com.appcelerator.titanium.core.mobile.SDKLocator.findVersion(SDKLocator.java:393) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:68) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.editor.tss.internal.text.TSSHover.getHoverInfo2(TSSHover.java:95) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverInfo2(CommonSourceViewerConfiguration.java:687) at org.eclipse.jface.text.TextViewerHoverManager$4.run(TextViewerHoverManager.java:166) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:24.690 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:24.691 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:24.756 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:24.757 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:24.883 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.getQueryHelper(AlloyViewValidator.java:431) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:224) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:24.883 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:24.904 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:24.905 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:34.022 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.createQueryHelper(JSHyperlinkCollector.java:443) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.processVariable(JSHyperlinkCollector.java:514) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.processProjectGlobals(JSHyperlinkCollector.java:401) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visit(JSHyperlinkCollector.java:530) at com.aptana.js.core.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:141) at com.aptana.js.core.parsing.ast.JSGetPropertyNode.accept(JSGetPropertyNode.java:34) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:141) at com.aptana.js.core.parsing.ast.JSGetPropertyNode.accept(JSGetPropertyNode.java:34) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:26) at com.aptana.js.core.parsing.ast.JSAssignmentNode.accept(JSAssignmentNode.java:84) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:232) at com.aptana.js.core.parsing.ast.JSStatementsNode.accept(JSStatementsNode.java:29) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:131) at com.aptana.js.core.parsing.ast.JSFunctionNode.accept(JSFunctionNode.java:46) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visit(JSHyperlinkCollector.java:544) at com.aptana.js.core.parsing.ast.JSParseRootNode.accept(JSParseRootNode.java:51) at com.aptana.editor.js.hyperlink.JSHyperlinkDetector.processAST(JSHyperlinkDetector.java:81) at com.aptana.editor.js.hyperlink.JSHyperlinkDetector.detectHyperlinks(JSHyperlinkDetector.java:57) at com.aptana.editor.js.hyperlink.JSHyperlinkDetector.detectHyperlinks(JSHyperlinkDetector.java:33) at org.eclipse.ui.texteditor.HyperlinkDetectorRegistry$HyperlinkDetectorDelegate.detectHyperlinks(HyperlinkDetectorRegistry.java:80) at org.eclipse.jface.text.hyperlink.HyperlinkManager.findHyperlinks(HyperlinkManager.java:289) at org.eclipse.jface.text.hyperlink.HyperlinkManager.findHyperlinks(HyperlinkManager.java:261) at org.eclipse.jface.text.hyperlink.HyperlinkManager.mouseMove(HyperlinkManager.java:469) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:212) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:34.022 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:39.875 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:39.876 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:40.070 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:40.071 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:40.251 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:614) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:525) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:497) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:263) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:40.251 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:49.099 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:49.099 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:49.103 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:49.103 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:49.956 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:49.956 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:52.009 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:52.009 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:59.821 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:59.822 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:52:59.825 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:52:59.826 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:00.443 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:00.443 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:00.590 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:00.590 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:00.606 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:614) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:525) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:497) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:263) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:00.607 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:01.482 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:01.483 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:01.485 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:01.485 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:02.672 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:02.675 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:02.677 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:02.678 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:03.140 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:03.141 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:03.352 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:03.352 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:03.501 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:614) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:525) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:497) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:263) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:03.501 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:05.492 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:263) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:401) at org.eclipse.core.internal.resources.Project$1.run(Project.java:618) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.core.internal.resources.Project.internalBuild(Project.java:597) at org.eclipse.core.internal.resources.Project.build(Project.java:114) at org.eclipse.debug.core.model.LaunchConfigurationDelegate$1.run(LaunchConfigurationDelegate.java:430) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2295) at org.eclipse.debug.core.model.LaunchConfigurationDelegate.buildProjects(LaunchConfigurationDelegate.java:437) at org.eclipse.debug.core.model.LaunchConfigurationDelegate.buildForLaunch(LaunchConfigurationDelegate.java:130) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:855) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:05.492 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:12.600 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:12.601 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:12.603 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:12.603 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:19.224 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:19.225 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:27.242 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:27.242 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:46.041 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:46.042 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:46.044 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:46.045 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:46.941 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:46.942 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:47.992 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:47.992 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:48.119 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:48.119 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:48.121 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:48.122 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:48.739 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:48.740 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:48.901 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:614) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:525) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:497) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:263) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:48.901 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:49.029 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:49.029 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:51.948 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:263) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:401) at org.eclipse.core.internal.resources.Project$1.run(Project.java:618) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.core.internal.resources.Project.internalBuild(Project.java:597) at org.eclipse.core.internal.resources.Project.build(Project.java:114) at org.eclipse.debug.core.model.LaunchConfigurationDelegate$1.run(LaunchConfigurationDelegate.java:430) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2295) at org.eclipse.debug.core.model.LaunchConfigurationDelegate.buildProjects(LaunchConfigurationDelegate.java:437) at org.eclipse.debug.core.model.LaunchConfigurationDelegate.buildForLaunch(LaunchConfigurationDelegate.java:130) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:855) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:51.948 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:53:58.491 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.initialReconcile(CommonReconcilingStrategy.java:149) at com.aptana.editor.common.text.reconciler.CommonReconciler.initialProcess(CommonReconciler.java:188) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:173) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:53:58.492 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:54:07.678 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:54:07.679 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:54:12.984 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:54:12.985 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:54:12.997 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverInfo2(CommonSourceViewerConfiguration.java:687) at org.eclipse.jface.text.TextViewerHoverManager$4.run(TextViewerHoverManager.java:166) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:54:12.997 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:54:44.131 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.createQueryHelper(JSHyperlinkCollector.java:443) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.processVariable(JSHyperlinkCollector.java:514) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.processProjectGlobals(JSHyperlinkCollector.java:401) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visit(JSHyperlinkCollector.java:530) at com.aptana.js.core.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:141) at com.aptana.js.core.parsing.ast.JSGetPropertyNode.accept(JSGetPropertyNode.java:34) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:141) at com.aptana.js.core.parsing.ast.JSGetPropertyNode.accept(JSGetPropertyNode.java:34) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:26) at com.aptana.js.core.parsing.ast.JSAssignmentNode.accept(JSAssignmentNode.java:84) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:232) at com.aptana.js.core.parsing.ast.JSStatementsNode.accept(JSStatementsNode.java:29) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:131) at com.aptana.js.core.parsing.ast.JSFunctionNode.accept(JSFunctionNode.java:46) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visit(JSHyperlinkCollector.java:544) at com.aptana.js.core.parsing.ast.JSParseRootNode.accept(JSParseRootNode.java:51) at com.aptana.editor.js.hyperlink.JSHyperlinkDetector.processAST(JSHyperlinkDetector.java:81) at com.aptana.editor.js.hyperlink.JSHyperlinkDetector.detectHyperlinks(JSHyperlinkDetector.java:57) at com.aptana.editor.js.hyperlink.JSHyperlinkDetector.detectHyperlinks(JSHyperlinkDetector.java:33) at org.eclipse.ui.texteditor.HyperlinkDetectorRegistry$HyperlinkDetectorDelegate.detectHyperlinks(HyperlinkDetectorRegistry.java:80) at org.eclipse.jface.text.hyperlink.HyperlinkManager.findHyperlinks(HyperlinkManager.java:289) at org.eclipse.jface.text.hyperlink.HyperlinkManager.findHyperlinks(HyperlinkManager.java:261) at org.eclipse.jface.text.hyperlink.HyperlinkManager.mouseMove(HyperlinkManager.java:469) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:212) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:54:44.131 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:54:48.140 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:54:48.141 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:54:48.145 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:54:48.145 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:55:06.000 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:55:06.000 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:55:10.557 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:55:10.558 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:55:10.997 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:55:11.001 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:55:11.002 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:55:11.003 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:55:11.575 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:55:11.576 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:55:11.601 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:55:11.601 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:55:11.754 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:614) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:525) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:497) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:263) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:55:11.754 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:55:12.990 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:55:12.991 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:55:12.993 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:55:12.994 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:55:33.974 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:55:33.975 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:55:33.989 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:55:33.990 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:02.502 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:02.503 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:02.505 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:02.506 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:05.970 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:05.971 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:06.012 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:06.012 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:06.014 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:06.014 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:06.767 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:06.767 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:06.778 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:06.779 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:06.959 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant.getHelper(ViewIndexingParticipant.java:253) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant.getUserAgentsForType(ViewIndexingParticipant.java:241) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant$ASTVisitor.include(ViewIndexingParticipant.java:220) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant$ASTVisitor.include(ViewIndexingParticipant.java:1) at com.aptana.parsing.util.ParseUtil.treeApply(ParseUtil.java:155) at com.aptana.parsing.util.ParseUtil.treeApply(ParseUtil.java:121) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant.index(ViewIndexingParticipant.java:81) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:06.959 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:06.977 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.getQueryHelper(AlloyViewValidator.java:431) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:224) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:06.977 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:07.022 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:07.022 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:07.059 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:07.059 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:07.077 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:07.078 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:07.078 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant.getHelper(ViewIndexingParticipant.java:253) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant.getUserAgentsForType(ViewIndexingParticipant.java:241) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant$ASTVisitor.include(ViewIndexingParticipant.java:220) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant$ASTVisitor.include(ViewIndexingParticipant.java:1) at com.aptana.parsing.util.ParseUtil.treeApply(ParseUtil.java:155) at com.aptana.parsing.util.ParseUtil.treeApply(ParseUtil.java:121) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant.index(ViewIndexingParticipant.java:81) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:07.079 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:07.114 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.getQueryHelper(AlloyViewValidator.java:431) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:224) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:07.114 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:07.885 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:07.886 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:08.082 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:614) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:525) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:497) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:263) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:08.083 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:18.129 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:18.129 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:22.689 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:22.689 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:23.134 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.contentassist.JSContentAssistProcessor.getQueryHelper(JSContentAssistProcessor.java:1010) at com.aptana.editor.js.contentassist.JSContentAssistProcessor.getParentObjectTypes(JSContentAssistProcessor.java:1399) at com.aptana.editor.js.contentassist.JSContentAssistProcessor.addProperties(JSContentAssistProcessor.java:323) at com.aptana.editor.js.contentassist.JSContentAssistProcessor.doComputeCompletionProposals(JSContentAssistProcessor.java:884) at com.aptana.editor.common.CommonContentAssistProcessor.computeCompletionProposals(CommonContentAssistProcessor.java:417) at com.aptana.editor.common.contentassist.ContentAssistant.computeCompletionProposals(ContentAssistant.java:2221) at com.aptana.editor.common.contentassist.CompletionProposalPopup.computeProposals(CompletionProposalPopup.java:394) at com.aptana.editor.common.contentassist.CompletionProposalPopup.access$7(CompletionProposalPopup.java:388) at com.aptana.editor.common.contentassist.CompletionProposalPopup$1.run(CompletionProposalPopup.java:331) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at com.aptana.editor.common.contentassist.CompletionProposalPopup.showProposals(CompletionProposalPopup.java:325) at com.aptana.editor.common.contentassist.ContentAssistant$AutoAssistListener$1.run(ContentAssistant.java:468) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:23.135 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:24.741 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:24.744 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:25.332 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:25.332 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:25.516 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:614) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:525) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:497) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:263) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:25.517 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:25.780 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:25.781 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:30.498 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:30.499 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:30.507 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:30.508 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:30.618 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.createQueryHelper(JSHyperlinkCollector.java:443) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.processProperty(JSHyperlinkCollector.java:422) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.processProjectGlobals(JSHyperlinkCollector.java:395) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visit(JSHyperlinkCollector.java:530) at com.aptana.js.core.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:141) at com.aptana.js.core.parsing.ast.JSGetPropertyNode.accept(JSGetPropertyNode.java:34) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:141) at com.aptana.js.core.parsing.ast.JSGetPropertyNode.accept(JSGetPropertyNode.java:34) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:161) at com.aptana.js.core.parsing.ast.JSInvokeNode.accept(JSInvokeNode.java:31) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:232) at com.aptana.js.core.parsing.ast.JSStatementsNode.accept(JSStatementsNode.java:29) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:131) at com.aptana.js.core.parsing.ast.JSFunctionNode.accept(JSFunctionNode.java:46) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:16) at com.aptana.js.core.parsing.ast.JSArgumentsNode.accept(JSArgumentsNode.java:29) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:161) at com.aptana.js.core.parsing.ast.JSInvokeNode.accept(JSInvokeNode.java:31) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:232) at com.aptana.js.core.parsing.ast.JSStatementsNode.accept(JSStatementsNode.java:29) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:156) at com.aptana.js.core.parsing.ast.JSIfNode.accept(JSIfNode.java:40) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:232) at com.aptana.js.core.parsing.ast.JSStatementsNode.accept(JSStatementsNode.java:29) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visitChildren(JSHyperlinkCollector.java:568) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:131) at com.aptana.js.core.parsing.ast.JSFunctionNode.accept(JSFunctionNode.java:46) at com.aptana.editor.js.hyperlink.JSHyperlinkCollector.visit(JSHyperlinkCollector.java:544) at com.aptana.js.core.parsing.ast.JSParseRootNode.accept(JSParseRootNode.java:51) at com.aptana.editor.js.hyperlink.JSHyperlinkDetector.processAST(JSHyperlinkDetector.java:81) at com.aptana.editor.js.hyperlink.JSHyperlinkDetector.detectHyperlinks(JSHyperlinkDetector.java:57) at com.aptana.editor.js.hyperlink.JSHyperlinkDetector.detectHyperlinks(JSHyperlinkDetector.java:33) at org.eclipse.ui.texteditor.HyperlinkDetectorRegistry$HyperlinkDetectorDelegate.detectHyperlinks(HyperlinkDetectorRegistry.java:80) at org.eclipse.jface.text.hyperlink.HyperlinkManager.findHyperlinks(HyperlinkManager.java:289) at org.eclipse.jface.text.hyperlink.HyperlinkManager.findHyperlinks(HyperlinkManager.java:261) at org.eclipse.jface.text.hyperlink.HyperlinkManager.mouseMove(HyperlinkManager.java:469) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:212) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:30.619 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:30.850 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:30.851 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:31.001 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:614) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:525) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:497) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:263) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:31.001 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:31.341 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:31.341 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:35.333 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:35.334 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:35.397 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:35.398 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:35.505 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:183) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.core.build.UnifiedBuilder.buildFile(UnifiedBuilder.java:614) at com.aptana.core.build.UnifiedBuilder.doBuildFiles(UnifiedBuilder.java:525) at com.aptana.core.build.UnifiedBuilder.buildFiles(UnifiedBuilder.java:497) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:263) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:35.505 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:45.643 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:45.644 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:56:45.646 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:56:45.646 !MESSAGE Titanium SDK not found !ENTRY org.eclipse.ui 4 0 2015-10-04 17:56:50.185 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:57:12.340 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.ui.preferences.ProjectBuildPathPropertyPage.getSelectedBuildPathEntries(ProjectBuildPathPropertyPage.java:314) at com.aptana.ui.preferences.ProjectBuildPathPropertyPage.createContents(ProjectBuildPathPropertyPage.java:94) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:233) at org.eclipse.jface.preference.PreferenceDialog.createPageControl(PreferenceDialog.java:1537) at org.eclipse.jface.preference.PreferenceDialog$13.run(PreferenceDialog.java:1289) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:50) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:178) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1281) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.showPage(FilteredPreferenceDialog.java:699) at org.eclipse.jface.preference.PreferenceDialog$9$1.run(PreferenceDialog.java:730) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.jface.preference.PreferenceDialog$9.selectionChanged(PreferenceDialog.java:725) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:876) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:50) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:178) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:873) at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:1217) at org.eclipse.jface.viewers.StructuredViewer$5.widgetSelected(StructuredViewer.java:1243) at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:265) at org.eclipse.jface.util.OpenStrategy.access$5(OpenStrategy.java:259) at org.eclipse.jface.util.OpenStrategy$1$2.run(OpenStrategy.java:440) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.observerProc(Display.java:3584) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:5000) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5378) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.mouseDownSuper(Widget.java:1101) at org.eclipse.swt.widgets.Tree.mouseDownSuper(Tree.java:2064) at org.eclipse.swt.widgets.Widget.mouseDown(Widget.java:1093) at org.eclipse.swt.widgets.Control.mouseDown(Control.java:2563) at org.eclipse.swt.widgets.Tree.mouseDown(Tree.java:2032) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5638) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2105) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2329) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5702) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:5139) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5288) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3666) at org.eclipse.jface.window.Window.runEventLoop(Window.java:832) at org.eclipse.jface.window.Window.open(Window.java:808) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:160) at org.eclipse.ui.internal.ide.actions.ProjectPropertyDialogAction.run(ProjectPropertyDialogAction.java:77) at org.eclipse.jface.action.Action.runWithEvent(Action.java:519) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:595) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:511) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:420) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:57:12.341 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:57:28.452 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:57:28.452 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:57:30.536 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.ui.preferences.ProjectBuildPathPropertyPage.performOk(ProjectBuildPathPropertyPage.java:424) at org.eclipse.jface.preference.PreferenceDialog$12.run(PreferenceDialog.java:992) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:50) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:178) at org.eclipse.jface.preference.PreferenceDialog.okPressed(PreferenceDialog.java:971) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDialog.java:460) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:236) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:619) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.jface.window.Window.runEventLoop(Window.java:832) at org.eclipse.jface.window.Window.open(Window.java:808) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:160) at org.eclipse.ui.internal.ide.actions.ProjectPropertyDialogAction.run(ProjectPropertyDialogAction.java:77) at org.eclipse.jface.action.Action.runWithEvent(Action.java:519) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:595) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:511) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:420) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:57:30.536 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:57:32.305 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:57:32.305 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:57:32.307 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.aptana.editor.js.internal.JSModelUtil.createQueryHelper(JSModelUtil.java:90) at com.aptana.editor.js.internal.JSModelUtil.getProperties(JSModelUtil.java:36) at com.aptana.editor.js.text.JSTextHover.getHoverInfo2(JSTextHover.java:71) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverRegion(CommonSourceViewerConfiguration.java:732) at org.eclipse.jface.text.TextViewerHoverManager.computeInformation(TextViewerHoverManager.java:140) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1131) at org.eclipse.jface.text.AbstractHoverInformationControlManager$MouseTracker.mouseHover(AbstractHoverInformationControlManager.java:519) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:208) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-04 17:57:32.307 !MESSAGE Titanium SDK not found !ENTRY org.eclipse.core.jobs 2 2 2015-10-04 17:57:43.155 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-04 17:57:51.797 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:58:10.907 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:58:10.911 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-04 17:58:15.163 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-04 17:58:15.189 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-04 17:58:15.217 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-04 17:58:15.219 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-04 17:58:15.221 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-04 17:58:15.222 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-04 17:58:15.225 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-04 17:58:15.226 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:59:28.791 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 17:59:28.792 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:01:20.637 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:01:20.638 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-04 18:02:56.674 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-04 18:03:21.565 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:03:41.016 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:03:41.020 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-04 18:03:45.712 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-04 18:03:45.731 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-04 18:03:45.743 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-04 18:03:45.744 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-04 18:03:45.746 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-04 18:03:45.748 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-04 18:03:45.750 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-04 18:03:45.752 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:04:35.344 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:04:35.345 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:05:26.474 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:05:26.474 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:07:29.783 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:07:29.783 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:10:08.551 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:10:08.552 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:11:47.288 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-04 18:11:47.288 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-04 18:11:59.219 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-06 14:28:57.137 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-10-06 14:29:05.736 !MESSAGE (Build 4.3.1.1442888904) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-06 14:29:05.740 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Failed to check login status. Likely not logged in. !SESSION 2015-10-07 18:49:15.891 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-10-07 18:49:25.006 !MESSAGE (Build 4.3.1.1442888904) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-07 18:49:25.011 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-07 18:50:04.933 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-07 18:50:04.936 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-07 18:50:04.944 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-07 18:50:04.946 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-07 18:50:04.959 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-07 18:50:04.978 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-07 18:50:04.980 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-07 18:50:04.982 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 18:50:05.507 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 18:50:05.507 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 18:51:28.172 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 18:51:28.173 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 18:57:23.035 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 18:57:23.036 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-07 19:01:55.237 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-07 19:01:55.237 !MESSAGE Java heap space !STACK 0 java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOfRange(Arrays.java:2694) at java.lang.String.(String.java:203) at java.lang.StringBuilder.toString(StringBuilder.java:405) at com.aptana.core.util.InputStreamGobbler.getResult(InputStreamGobbler.java:60) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:393) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:280) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:02:01.442 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:02:01.442 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:03:06.190 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:03:06.191 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:07:40.309 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:07:40.310 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:09:19.023 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:09:19.025 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:10:15.273 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:10:15.274 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:15:22.977 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:15:22.978 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:17:28.982 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:17:28.983 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:18:23.036 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:18:23.037 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:19:54.950 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:19:54.950 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:20:39.410 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:20:39.411 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:22:52.777 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:22:52.778 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:23:36.220 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:23:36.222 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:25:22.683 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:25:22.684 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:28:24.398 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:28:24.399 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-07 19:29:28.318 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-07 19:29:33.759 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-07 19:29:36.073 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-07 19:29:40.976 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:32:08.178 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-07 19:32:08.265 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 4 2 2015-10-07 19:32:32.213 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:437) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:309) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:225) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:222) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:242) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-07 19:32:37.127 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-09 15:47:22.394 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-10-09 15:47:49.034 !MESSAGE (Build 4.3.1.1442888904) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-09 15:47:49.038 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:48:15.999 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:48:16.000 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-09 15:48:20.060 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-09 15:48:20.078 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-09 15:48:20.094 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-09 15:48:20.096 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-09 15:48:20.098 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-09 15:48:20.100 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-09 15:48:20.102 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-09 15:48:20.104 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:49:39.672 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:49:39.674 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:53:27.604 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:53:27.605 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:54:53.229 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:54:53.229 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-09 15:55:56.693 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:5000) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5378) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:94) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.jface 4 0 2015-10-09 15:56:27.830 !MESSAGE Unhandled event loop exception during blocked modal context. !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (org.eclipse.swt.SWTException: Widget is disposed) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:175) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:390) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:527) at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:284) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:539) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:447) at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:3111) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1167) at org.eclipse.ui.internal.Workbench.access$21(Workbench.java:1079) at org.eclipse.ui.internal.Workbench$19.run(Workbench.java:1410) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1407) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1380) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1556) at org.eclipse.ui.internal.WorkbenchWindow.access$15(WorkbenchWindow.java:1527) at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1592) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1589) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1603) at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:521) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:563) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Shell.closeWidget(Shell.java:612) at org.eclipse.swt.widgets.Shell.windowShouldClose(Shell.java:2359) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5636) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2105) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2329) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5702) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:5139) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5288) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3666) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:573) at org.eclipse.swt.widgets.Control.setToolTipText(Control.java:4185) at com.appcelerator.titanium.ui.LaunchAppToolbarContribution$1$1.run(LaunchAppToolbarContribution.java:215) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) ... 64 more !ENTRY org.eclipse.core.jobs 2 2 2015-10-09 15:56:35.381 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-09 15:57:12.654 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:57:30.559 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:57:30.563 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:57:58.604 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:57:58.605 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:58:10.922 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 15:58:10.922 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-10-09 16:08:50.963 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Source type cannot be null or empty !STACK 0 java.lang.IllegalArgumentException: Source type cannot be null or empty at com.appcelerator.titanium.alloy.core.js.inferencing.AlloyJSAliasResolver.resolve(AlloyJSAliasResolver.java:26) at com.aptana.js.internal.core.inferencing.AliasResolverFactory.resolve(AliasResolverFactory.java:100) at com.aptana.js.core.inferencing.JSNodeTypeInferrer.visit(JSNodeTypeInferrer.java:704) at com.aptana.js.core.parsing.ast.JSIdentifierNode.accept(JSIdentifierNode.java:33) at com.aptana.js.core.parsing.ast.JSTreeWalker.visit(JSTreeWalker.java:176) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.processValues(JSSymbolTypeInferrer.java:606) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:359) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.processProperties(JSSymbolTypeInferrer.java:535) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:366) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.processProperties(JSSymbolTypeInferrer.java:535) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:366) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.processProperties(JSSymbolTypeInferrer.java:535) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:366) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.getSymbolPropertyElement(JSSymbolTypeInferrer.java:420) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer$1.map(JSSymbolTypeInferrer.java:289) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer$1.map(JSSymbolTypeInferrer.java:1) at com.aptana.core.util.CollectionsUtil.map(CollectionsUtil.java:432) at com.aptana.core.util.CollectionsUtil.map(CollectionsUtil.java:466) at com.aptana.js.internal.core.inferencing.JSSymbolTypeInferrer.getScopeProperties(JSSymbolTypeInferrer.java:285) at com.aptana.js.core.index.JSFileIndexingParticipant.processParseResults(JSFileIndexingParticipant.java:232) at com.aptana.js.core.index.JSFileIndexingParticipant.index(JSFileIndexingParticipant.java:105) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !ENTRY org.eclipse.ui 4 0 2015-10-09 16:10:02.222 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 16:11:55.707 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 16:11:55.708 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-10-09 16:15:12.280 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.ui.workbench 4 2 2015-10-09 16:16:44.035 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-09 16:16:44.036 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-09 16:16:44.037 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-09 16:16:48.102 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-09 16:17:03.188 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 16:17:24.072 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 16:17:24.074 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 16:19:17.486 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 16:19:17.488 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-09 16:20:16.078 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-10-09 16:20:16.079 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !SESSION 2015-10-09 17:26:23.420 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:26:46.258 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:26:46.262 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-09 17:28:09.882 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:28:12.944 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:28:12.945 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:31:49.518 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:31:49.519 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:33:18.939 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:33:18.939 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:37:50.891 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:37:50.891 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:38:40.615 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:38:40.615 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:39:13.928 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:39:13.929 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-10-09 17:39:41.690 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:42:59.153 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:42:59.155 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:47:22.130 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:47:22.130 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:49:09.541 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:49:09.542 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:51:20.784 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:51:20.784 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:52:26.149 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:52:26.149 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-09 17:54:00.203 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-09 17:56:20.461 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:56:38.968 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:56:38.973 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-09 17:56:51.819 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-09 17:56:51.840 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-09 17:56:51.844 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-09 17:56:51.845 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-09 17:56:51.847 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-09 17:56:51.848 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-09 17:56:51.850 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-09 17:56:51.851 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:57:28.577 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:57:28.579 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:58:20.134 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:58:20.134 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:58:41.115 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:58:41.116 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:59:13.530 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 17:59:13.531 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-09 18:01:32.765 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 18:01:51.568 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 18:01:51.572 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-09 18:01:51.634 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-09 18:01:51.634 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-09 18:01:51.635 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-09 18:01:51.635 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 18:02:44.087 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 18:02:44.089 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-09 18:03:25.030 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-10-09 18:03:25.030 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-09 23:10:01.661 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:10:22.975 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:10:22.981 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-09 23:10:41.347 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-09 23:10:41.379 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-09 23:10:41.381 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-09 23:10:41.382 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-09 23:10:41.384 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-09 23:10:41.385 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-09 23:10:41.387 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-09 23:10:41.388 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:12:13.800 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:12:13.802 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-09 23:12:18.008 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.aptana.js.core 4 0 2015-10-09 23:12:54.263 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.aptana.js.core 4 0 2015-10-09 23:13:50.599 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.core.jobs 2 2 2015-10-09 23:14:16.949 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-10-09 23:14:16.949 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !SESSION 2015-10-09 23:14:22.965 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:14:42.176 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:14:42.180 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:17:23.770 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:17:23.771 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-09 23:17:39.784 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui.workbench 4 2 2015-10-09 23:19:50.924 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-09 23:19:50.926 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-09 23:19:50.926 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-09 23:19:54.897 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-09 23:20:27.707 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:21:00.328 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:21:00.332 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-09 23:21:11.150 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-09 23:21:11.167 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-09 23:21:11.176 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-09 23:21:11.180 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-09 23:21:11.181 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-09 23:21:11.182 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-09 23:21:11.183 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-09 23:21:11.186 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:23:01.062 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:23:01.063 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-09 23:38:47.921 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:51:22.730 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:51:22.731 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:56:51.007 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:56:51.008 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:57:26.105 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-09 23:57:26.106 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-10 00:01:52.771 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-10 00:01:52.771 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-10 00:09:52.573 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-11 13:38:47.217 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-10-11 13:38:58.139 !MESSAGE (Build 4.3.1.1442888904) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-11 13:38:58.143 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 13:39:27.493 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 13:39:27.498 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 13:40:45.118 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 13:40:45.119 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-11 13:53:13.039 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-11 13:53:13.040 !MESSAGE GC overhead limit exceeded !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.String.substring(String.java:1913) at org.eclipse.core.runtime.Path.computeSegments(Path.java:488) at org.eclipse.core.runtime.Path.initialize(Path.java:602) at org.eclipse.core.runtime.Path.fromPortableString(Path.java:106) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.readOtherFiles(GitIndex.java:1056) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1033) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:05:41.382 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:05:41.382 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:09:40.156 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:09:40.157 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:15:12.676 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:15:12.678 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:16:41.116 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:16:41.117 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:19:53.248 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:19:53.249 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:20:33.776 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:20:33.777 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:23:20.081 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:23:20.082 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:24:50.606 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:24:50.608 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:26:31.800 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:26:31.801 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:26:56.229 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 14:26:56.229 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-11 15:27:39.615 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:28:00.579 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:28:00.584 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-11 15:28:03.133 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-11 15:28:03.136 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-11 15:28:03.140 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-11 15:28:03.142 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-11 15:28:03.182 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-11 15:28:03.194 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-11 15:28:03.195 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-11 15:28:03.198 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-10-11 15:28:12.210 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:5000) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5378) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:94) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3663) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:29:16.415 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:29:16.417 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:33:42.473 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:33:42.474 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-11 15:38:02.939 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-10-11 15:38:06.756 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:38:15.343 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:38:15.345 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-11 15:38:30.384 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-11 15:38:30.402 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-11 15:38:30.408 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-11 15:38:30.409 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-11 15:38:30.411 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-11 15:38:30.412 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-11 15:38:30.414 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-11 15:38:30.416 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:41:59.542 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:41:59.543 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-11 15:43:19.386 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-10-11 15:43:23.771 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:43:33.860 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:43:33.866 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-11 15:43:36.596 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-11 15:43:36.597 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-11 15:43:36.597 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-11 15:43:36.597 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-11 15:43:44.524 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-11 15:43:44.548 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-11 15:43:44.552 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-11 15:43:44.553 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-11 15:43:44.555 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-11 15:43:44.556 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-11 15:43:44.558 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-11 15:43:44.560 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:47:16.727 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-11 15:47:16.728 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-12 12:01:24.022 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-10-12 12:01:27.777 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:01:36.738 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.aptana.git.core 4 1 2015-10-12 12:01:36.739 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-10-12 12:01:36.739 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-12 12:01:36.741 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-12 12:01:36.742 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:01:36.744 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-12 12:01:49.510 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-12 12:01:49.512 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-12 12:01:49.542 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-12 12:01:49.544 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-12 12:01:49.545 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-12 12:01:49.546 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-12 12:01:49.548 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-12 12:01:49.550 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-10-12 12:02:00.451 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:03:07.248 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:03:07.249 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:04:20.306 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:04:20.307 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:10:06.755 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:10:06.756 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:15:45.782 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:15:45.783 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:22:37.253 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:22:37.254 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-10-12 12:23:55.834 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:28:25.465 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:28:25.466 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:33:22.378 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:33:22.380 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-12 12:33:57.483 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-12 12:35:36.152 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:35:55.961 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:35:55.963 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-12 12:35:59.797 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-12 12:35:59.817 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-12 12:35:59.834 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-12 12:35:59.836 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-12 12:35:59.838 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-12 12:35:59.841 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-12 12:35:59.844 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-12 12:35:59.846 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:38:42.018 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:38:42.019 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:42:05.969 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 12:42:05.970 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-12 13:17:35.833 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-10-12 13:17:38.972 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:17:47.763 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:17:47.764 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:21:07.797 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:21:07.799 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:23:02.639 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:23:02.641 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:31:08.614 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:31:08.615 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:35:18.397 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:35:18.397 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:38:40.288 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:38:40.288 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-12 13:38:54.545 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-12 13:40:24.921 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:42:10.325 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:42:10.325 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:51:23.737 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:51:23.738 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:54:12.724 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 13:54:12.725 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 14:12:29.084 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 14:12:29.084 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:00:56.393 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:00:56.394 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:02:17.029 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:02:17.030 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:04:58.634 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:04:58.635 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:08:42.709 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:08:42.709 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:13:40.756 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:13:40.756 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:15:12.769 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:15:12.770 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:25:51.035 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:25:51.035 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:32:51.528 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:32:51.529 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:34:52.688 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:34:52.689 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:38:47.115 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:38:47.115 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:41:12.519 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:41:12.519 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:41:44.909 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:41:44.909 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:52:59.037 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:52:59.038 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:54:18.054 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:54:18.055 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-12 15:54:20.059 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:59:27.373 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 15:59:27.373 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 16:06:55.450 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 16:06:55.451 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 16:10:44.079 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 16:10:44.080 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 16:12:41.074 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 16:12:41.075 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 16:14:29.719 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 16:14:29.720 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-12 16:14:48.245 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-12 17:44:43.938 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 17:45:07.248 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 17:45:07.250 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 17:46:05.378 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 17:46:05.379 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.core 4 1 2015-10-12 17:46:21.551 !MESSAGE sudo: a password is required !ENTRY com.aptana.core 0 0 2015-10-12 17:46:24.476 !MESSAGE !ENTRY org.eclipse.jface 4 0 2015-10-12 17:47:56.185 !MESSAGE Unhandled event loop exception during blocked modal context. !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (org.eclipse.swt.SWTException: Widget is disposed) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:175) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:390) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:527) at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:284) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:539) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:447) at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:3111) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1167) at org.eclipse.ui.internal.Workbench.access$21(Workbench.java:1079) at org.eclipse.ui.internal.Workbench$19.run(Workbench.java:1410) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1407) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1380) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1556) at org.eclipse.ui.internal.WorkbenchWindow.access$15(WorkbenchWindow.java:1527) at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1592) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1589) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1603) at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:521) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:563) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Shell.closeWidget(Shell.java:612) at org.eclipse.swt.widgets.Shell.windowShouldClose(Shell.java:2359) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5636) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2105) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2329) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5702) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:5139) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5288) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3666) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:573) at org.eclipse.swt.custom.CTabItem.getControl(CTabItem.java:163) at org.eclipse.ui.part.MultiPageEditorPart.getControl(MultiPageEditorPart.java:607) at com.appcelerator.titanium.ui.ide.tiappEditor.TiAppEditor.getAdapter(TiAppEditor.java:379) at org.eclipse.ui.texteditor.AbstractTextEditor$ActivationListener.handleActivation(AbstractTextEditor.java:984) at org.eclipse.ui.texteditor.AbstractTextEditor$ActivationListener.access$0(AbstractTextEditor.java:980) at org.eclipse.ui.texteditor.AbstractTextEditor$10.run(AbstractTextEditor.java:1008) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) ... 64 more !ENTRY org.eclipse.core.jobs 2 2 2015-10-12 17:47:59.470 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-10-12 17:47:59.470 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !SESSION 2015-10-12 17:48:10.383 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 17:48:28.629 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 17:48:28.637 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-12 17:48:39.848 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-12 17:48:39.851 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-12 17:48:39.853 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-12 17:48:39.854 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-12 17:48:39.856 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-12 17:48:39.858 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-12 17:48:39.860 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-12 17:48:39.862 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 17:52:02.373 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 17:52:02.376 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 17:57:24.027 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 17:57:24.028 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 18:07:30.151 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 18:07:30.152 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 18:08:02.216 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 18:08:02.216 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-12 18:14:27.009 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-12 19:17:55.298 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 19:18:15.511 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 19:18:15.515 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 19:18:58.758 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 19:18:58.759 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-12 19:23:55.812 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-10-12 19:24:18.503 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-12 19:24:18.503 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-12 19:24:18.504 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-12 19:24:18.504 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 19:24:18.557 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 19:24:18.558 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-12 19:24:28.479 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-12 19:24:28.511 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-12 19:24:28.519 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-12 19:24:28.521 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-12 19:24:28.523 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-12 19:24:28.526 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-12 19:24:28.528 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-12 19:24:28.529 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 19:28:51.907 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-12 19:28:51.936 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-13 16:32:17.616 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-10-13 16:32:27.389 !MESSAGE (Build 4.3.1.1442888904) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-13 16:32:27.396 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:32:35.157 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:32:35.157 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.equinox.preferences 4 2 2015-10-13 16:32:39.212 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.equinox.preferences". !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(WorkbenchPlugin.java:685) at org.eclipse.ui.internal.themes.Theme.(Theme.java:66) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.getTheme(WorkbenchThemeManager.java:317) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.getTheme(WorkbenchThemeManager.java:332) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.doSetCurrentTheme(WorkbenchThemeManager.java:237) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.setCurrentTheme(WorkbenchThemeManager.java:371) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.getCurrentTheme(WorkbenchThemeManager.java:277) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.init(WorkbenchThemeManager.java:178) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.getCurrentTheme(WorkbenchThemeManager.java:269) at org.eclipse.ui.internal.editors.text.EditorsPluginPreferenceInitializer.setThemeBasedPreferences(EditorsPluginPreferenceInitializer.java:50) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants.initializeDefaultValues(AbstractDecoratedTextEditorPreferenceConstants.java:751) at org.eclipse.ui.editors.text.TextEditorPreferenceConstants.initializeDefaultValues(TextEditorPreferenceConstants.java:259) at org.eclipse.ui.internal.editors.text.EditorsPluginPreferenceInitializer.initializeDefaultPreferences(EditorsPluginPreferenceInitializer.java:43) at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper$1.run(PreferenceServiceRegistryHelper.java:300) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.runInitializer(PreferenceServiceRegistryHelper.java:303) at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.applyRuntimeDefaults(PreferenceServiceRegistryHelper.java:131) at org.eclipse.core.internal.preferences.PreferencesService.applyRuntimeDefaults(PreferencesService.java:368) at org.eclipse.core.internal.preferences.DefaultPreferences.applyRuntimeDefaults(DefaultPreferences.java:221) at org.eclipse.core.internal.preferences.DefaultPreferences.load(DefaultPreferences.java:274) at org.eclipse.core.internal.preferences.EclipsePreferences.create(EclipsePreferences.java:409) at org.eclipse.core.internal.preferences.EclipsePreferences.internalNode(EclipsePreferences.java:670) at org.eclipse.core.internal.preferences.EclipsePreferences.node(EclipsePreferences.java:812) at org.eclipse.core.internal.preferences.AbstractScope.getNode(AbstractScope.java:38) at org.eclipse.core.runtime.preferences.DefaultScope.getNode(DefaultScope.java:76) at com.aptana.theme.internal.ThemeManager.setCompareColors(ThemeManager.java:256) at com.aptana.theme.internal.ThemeManager.setCurrentTheme(ThemeManager.java:221) at com.aptana.theme.internal.ThemeManager.getCurrentTheme(ThemeManager.java:196) at com.aptana.editor.common.CommonEditorPlugin$6.setOccurrenceColors(CommonEditorPlugin.java:324) at com.aptana.editor.common.CommonEditorPlugin$6.runInUIThread(CommonEditorPlugin.java:352) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:97) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler.readAndDispatch(TitaniumSplashHandler.java:905) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler.doEventLoopForLogin(TitaniumSplashHandler.java:886) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler.init(TitaniumSplashHandler.java:259) at org.eclipse.ui.internal.Workbench$6.run(Workbench.java:817) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench.createSplashWrapper(Workbench.java:839) at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:753) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:610) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-13 16:32:58.480 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-13 16:32:58.495 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-13 16:32:58.500 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-13 16:32:58.501 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-13 16:32:58.503 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-13 16:32:58.504 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-13 16:32:58.506 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-13 16:32:58.507 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:36:52.136 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:36:52.137 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 4 2 2015-10-13 16:38:40.441 !MESSAGE An internal error occurred during: "Periodic workspace save.". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.util.zip.InflaterInputStream.(InflaterInputStream.java:88) at java.util.zip.ZipFile$ZipFileInflaterInputStream.(ZipFile.java:389) at java.util.zip.ZipFile.getInputStream(ZipFile.java:370) at org.eclipse.osgi.storage.bundlefile.ZipBundleEntry.getInputStream(ZipBundleEntry.java:59) at org.eclipse.osgi.storage.bundlefile.BundleEntry.getBytes(BundleEntry.java:90) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:568) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.core.internal.resources.SaveManager.computeSaveContexts(SaveManager.java:340) at org.eclipse.core.internal.resources.SaveManager.save(SaveManager.java:1162) at org.eclipse.core.internal.resources.SaveManager.save(SaveManager.java:1144) at org.eclipse.core.internal.resources.DelayedSnapshotJob.run(DelayedSnapshotJob.java:51) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-10-13 16:38:40.443 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.StringBuilder.toString(StringBuilder.java:405) at com.aptana.core.util.InputStreamGobbler.getResult(InputStreamGobbler.java:60) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:393) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.info(NodeAppcCLI.java:654) at com.appcelerator.titanium.android.core.AndroidSDKLocator.loadTiInfo(AndroidSDKLocator.java:829) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:222) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:242) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-13 16:38:47.671 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-13 16:39:06.494 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:39:28.173 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:39:28.175 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-13 16:39:31.602 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-13 16:39:31.618 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-13 16:39:31.622 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-13 16:39:31.625 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-13 16:39:31.626 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-13 16:39:31.628 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-13 16:39:31.631 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-13 16:39:31.632 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:43:32.324 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:43:32.326 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 0 2015-10-13 16:45:09.322 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Errors occurred while grabbing changed file listings !SESSION 2015-10-13 16:46:24.515 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:46:48.891 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:46:48.893 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-13 16:46:48.970 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-13 16:46:48.970 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-13 16:46:48.971 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-13 16:46:48.971 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-13 16:46:52.755 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-13 16:46:52.774 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-13 16:46:52.791 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-13 16:46:52.795 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-13 16:46:52.797 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-13 16:46:52.799 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-13 16:46:52.800 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-13 16:46:52.802 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:48:18.664 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:48:18.665 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:49:17.685 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:49:17.686 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-13 16:49:27.841 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-13 16:49:40.228 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.IllegalArgumentException: Argument not valid) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:4422) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkParent(Widget.java:511) at org.eclipse.swt.widgets.Widget.(Widget.java:132) at org.eclipse.swt.widgets.Control.(Control.java:116) at org.eclipse.swt.widgets.Scrollable.(Scrollable.java:73) at org.eclipse.swt.widgets.Composite.(Composite.java:91) at org.eclipse.ui.forms.widgets.LayoutComposite.(LayoutComposite.java:24) at org.eclipse.ui.forms.widgets.FormToolkit.createComposite(FormToolkit.java:311) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:555) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) ... 23 more !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:50:19.715 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:50:19.716 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-13 16:51:06.384 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !SESSION 2015-10-13 16:58:52.289 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:59:15.000 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 16:59:15.002 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-13 16:59:15.182 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-13 16:59:15.186 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-13 16:59:15.191 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-13 16:59:15.193 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-13 16:59:15.194 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-13 16:59:15.196 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-13 16:59:15.198 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-13 16:59:15.200 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:01:20.315 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:01:20.317 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-10-13 17:01:26.763 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY org.eclipse.ui 4 0 2015-10-13 17:01:41.794 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.IllegalArgumentException: Argument not valid) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:4422) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkParent(Widget.java:511) at org.eclipse.swt.widgets.Widget.(Widget.java:132) at org.eclipse.swt.widgets.Control.(Control.java:116) at org.eclipse.swt.widgets.Scrollable.(Scrollable.java:73) at org.eclipse.swt.widgets.Composite.(Composite.java:91) at org.eclipse.ui.forms.widgets.LayoutComposite.(LayoutComposite.java:24) at org.eclipse.ui.forms.widgets.FormToolkit.createComposite(FormToolkit.java:311) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:555) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) ... 23 more !SESSION 2015-10-13 17:13:19.672 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:13:40.616 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:13:40.620 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-13 17:13:51.133 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-13 17:13:51.158 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-13 17:13:51.161 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-13 17:13:51.162 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-13 17:13:51.163 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-13 17:13:51.164 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-13 17:13:51.165 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-13 17:13:51.167 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 0 2015-10-13 17:19:44.505 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Errors occurred while grabbing changed file listings !ENTRY org.eclipse.core.jobs 4 2 2015-10-13 17:20:00.065 !MESSAGE An internal error occurred during: "Periodic workspace save.". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.lang.ClassLoader.findLoadedClass0(Native Method) at java.lang.ClassLoader.findLoadedClass(ClassLoader.java:1093) at org.eclipse.osgi.internal.loader.ModuleClassLoader.publicFindLoaded(ModuleClassLoader.java:295) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:524) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.sources.SingleSourcePackage.loadClass(SingleSourcePackage.java:36) at org.eclipse.osgi.internal.loader.sources.MultiSourcePackage.loadClass(MultiSourcePackage.java:32) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:391) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.eclipse.core.internal.resources.SaveManager.save(SaveManager.java:1148) at org.eclipse.core.internal.resources.SaveManager.save(SaveManager.java:1144) at org.eclipse.core.internal.resources.DelayedSnapshotJob.run(DelayedSnapshotJob.java:51) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-13 17:20:06.991 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-13 17:20:17.436 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:20:38.698 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:20:38.699 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-13 17:20:43.458 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-13 17:20:43.460 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-13 17:20:43.487 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-13 17:20:43.490 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-13 17:20:43.492 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-13 17:20:43.494 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-13 17:20:43.496 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-13 17:20:43.498 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:24:02.401 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:24:02.402 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:27:08.883 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:27:08.884 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:31:33.323 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:31:33.324 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:36:23.410 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:36:23.410 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:38:05.936 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 17:38:05.937 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-13 17:40:06.590 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-13 20:15:52.324 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 20:16:11.968 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 20:16:11.970 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 20:20:13.901 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 20:20:13.902 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 20:22:48.907 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 20:22:48.909 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 20:24:44.155 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 20:24:44.156 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 20:28:41.129 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 20:28:41.129 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 20:35:13.686 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-13 20:35:13.687 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-13 20:42:56.913 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-14 16:08:36.566 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:09:00.875 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:09:00.877 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:09:43.344 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:09:43.345 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:11:53.089 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:11:53.089 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-14 16:15:19.365 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:15:43.572 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:15:43.574 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-14 16:15:43.777 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 16:15:43.777 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 16:15:43.777 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 16:15:43.778 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:16:50.259 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:16:50.261 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:19:02.038 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:19:02.038 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-14 16:30:24.267 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-10-14 16:30:52.236 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 16:30:52.237 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 16:30:52.237 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 16:30:52.237 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:30:52.303 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:30:52.303 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-14 16:30:55.412 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-14 16:30:55.439 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-14 16:30:55.444 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-14 16:30:55.445 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-14 16:30:55.447 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-14 16:30:55.449 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-14 16:30:55.452 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-14 16:30:55.453 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-14 16:33:38.647 !MESSAGE (Build 4.3.1.201509302304) [ERROR] API Request: appOrganization, params: 785e1614-7c7d-439e-9777-b160c02af1e8 returned with unexpected response {"success":false,"description":"Appcelerator Login required to continue ...\n\n{\"org_id\":100012059,\"org_name\":\"fenciljp@dukes.jmu.edu\",\"current_user_belongs_to_organization\":true}"} !ENTRY com.appcelerator.titanium.360.core 4 0 2015-10-14 16:33:38.648 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Appcelerator Login required to continue ... {"org_id":100012059,"org_name":"fenciljp@dukes.jmu.edu","current_user_belongs_to_organization":true} !STACK 1 org.eclipse.core.runtime.CoreException: Appcelerator Login required to continue ... {"org_id":100012059,"org_name":"fenciljp@dukes.jmu.edu","current_user_belongs_to_organization":true} at com.appcelerator.titanium360.internal.core.Titanium360Manager.handleResponse(Titanium360Manager.java:326) at com.appcelerator.titanium360.internal.core.Titanium360Manager.callAPI(Titanium360Manager.java:268) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.doGetOrganization(ThreeSixtyProject.java:155) at com.appcelerator.titanium360.internal.core.ThreeSixtyProject.getOrganization(ThreeSixtyProject.java:129) at com.appcelerator.titanium360.ui.launch.contributor.VPCDeployTypeLaunchValidator.validate(VPCDeployTypeLaunchValidator.java:63) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.validateLaunchContributors(NodeAppcCLI.java:635) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:620) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.build(NodeAppcCLI.java:595) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.build(IOSNodeJSCommandsHelper.java:278) at com.appcelerator.titanium.ios.core.launching.IOSNodeJSCommandsHelper.runOnSimulator(IOSNodeJSCommandsHelper.java:383) at com.appcelerator.titanium.ios.ui.launching.simulator.IOSSimulatorLaunchConfigurationDelegate.launch(IOSSimulatorLaunchConfigurationDelegate.java:51) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:885) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.360.core 4 0 2015-10-14 16:33:38.649 !MESSAGE Appcelerator Login required to continue ... {"org_id":100012059,"org_name":"fenciljp@dukes.jmu.edu","current_user_belongs_to_organization":true} !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:34:58.671 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:34:58.673 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-14 16:36:04.160 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:36:26.045 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:36:26.047 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-14 16:36:26.381 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 16:36:26.381 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 16:36:26.381 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 16:36:26.382 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-14 16:36:29.563 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-14 16:36:29.564 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-14 16:36:29.566 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-14 16:36:29.573 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-14 16:36:29.600 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-14 16:36:29.602 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-14 16:36:29.603 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-14 16:36:29.606 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:38:22.890 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:38:22.892 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:39:48.304 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:39:48.304 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui.workbench 4 2 2015-10-14 16:41:31.931 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-14 16:41:31.934 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-14 16:41:31.934 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-14 16:41:36.707 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-14 16:46:09.995 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:46:30.412 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:46:30.414 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-14 16:46:33.992 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-14 16:46:34.020 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-14 16:46:34.024 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-14 16:46:34.031 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-14 16:46:34.038 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-14 16:46:34.042 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-14 16:46:34.046 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-14 16:46:34.053 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:50:44.044 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:50:44.045 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-14 16:51:43.473 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:52:11.747 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:52:11.749 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-14 16:52:12.087 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 16:52:12.088 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 16:52:12.088 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 16:52:12.088 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-14 16:52:16.050 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-14 16:52:16.078 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-14 16:52:16.085 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-14 16:52:16.087 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-14 16:52:16.088 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-14 16:52:16.090 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-14 16:52:16.092 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-14 16:52:16.094 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:55:31.134 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 16:55:31.135 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-14 17:16:29.750 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-10-14 17:18:55.667 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 17:18:55.667 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 17:18:55.667 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 17:18:55.667 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:18:58.138 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:18:58.140 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-14 17:19:00.482 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-14 17:19:00.486 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-14 17:19:00.491 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-14 17:19:00.494 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-14 17:19:00.528 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-14 17:19:00.530 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-14 17:19:00.532 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-14 17:19:00.533 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 0 2015-10-14 17:25:16.566 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Errors occurred while grabbing changed file listings !ENTRY org.eclipse.ui 4 0 2015-10-14 17:29:00.599 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.OutOfMemoryError: GC overhead limit exceeded) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.OutOfMemoryError: GC overhead limit exceeded at org.eclipse.swt.internal.cocoa.NSArray.objectAtIndex(NSArray.java:51) at org.eclipse.swt.widgets.Display.hasDefaultButton(Display.java:2152) at org.eclipse.swt.widgets.Display$4.run(Display.java:4354) at org.eclipse.swt.widgets.Display.runTimers(Display.java:4174) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660) at org.eclipse.ui.statushandlers.WorkbenchErrorHandler.showStatusAdapter(WorkbenchErrorHandler.java:111) at org.eclipse.ui.statushandlers.WorkbenchErrorHandler.access$0(WorkbenchErrorHandler.java:98) at org.eclipse.ui.statushandlers.WorkbenchErrorHandler$1.run(WorkbenchErrorHandler.java:65) at org.eclipse.ui.internal.UILockListener.doPendingWork(UILockListener.java:167) at org.eclipse.ui.internal.UISynchronizer$3.run(UISynchronizer.java:165) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) !ENTRY org.eclipse.core.jobs 4 2 2015-10-14 17:29:00.602 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at java.util.LinkedList.linkFirst(LinkedList.java:125) at java.util.LinkedList.addFirst(LinkedList.java:291) at org.json.simple.parser.JSONParser.parse(JSONParser.java:156) at org.json.simple.parser.JSONParser.parse(JSONParser.java:82) at org.json.simple.parser.JSONParser.parse(JSONParser.java:76) at com.appcelerator.titanium.android.core.AndroidSDKLocator.loadTiInfo(AndroidSDKLocator.java:841) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:224) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:222) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:242) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.aptana.git.core 4 1 2015-10-14 17:29:00.902 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 141 2015-10-14 17:29:00.902 !MESSAGE !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-14 17:29:00.902 !MESSAGE GC overhead limit exceeded !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded !SESSION 2015-10-14 17:30:43.141 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:31:18.919 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:31:18.921 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:34:28.281 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:34:28.283 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:37:53.982 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:37:53.983 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:39:37.410 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:39:37.410 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:41:11.393 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:41:11.394 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:42:32.978 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 17:42:32.979 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-14 17:43:40.895 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.jobs 2 2 2015-10-14 17:46:58.941 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-14 19:22:46.575 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 19:23:06.292 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 19:23:06.294 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-14 19:23:26.092 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-14 19:23:26.120 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-14 19:23:26.123 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-14 19:23:26.124 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-14 19:23:26.125 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-14 19:23:26.126 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-14 19:23:26.128 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-14 19:23:26.129 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-10-14 19:43:53.717 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-14 19:52:43.803 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 19:53:03.451 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 19:53:03.455 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-14 19:53:14.719 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-14 19:53:14.721 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-14 19:53:14.723 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-14 19:53:14.724 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-14 19:53:14.725 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-14 19:53:14.727 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-14 19:53:14.728 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-14 19:53:14.730 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-10-14 20:06:13.931 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.jobs 2 2 2015-10-14 20:34:28.486 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-14 21:03:57.796 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 21:04:14.431 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 21:04:14.437 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-14 21:04:29.295 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-14 21:04:29.298 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-14 21:04:29.300 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-14 21:04:29.301 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-14 21:04:29.303 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-14 21:04:29.305 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-14 21:04:29.306 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-14 21:04:29.308 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-10-14 21:15:12.293 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-10-14 21:15:15.932 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-10-14 21:15:25.315 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-10-14 21:15:25.315 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-14 21:15:25.317 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-14 21:15:25.320 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 21:15:25.882 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 21:15:25.883 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-14 21:52:29.742 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 21:52:47.216 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 21:52:47.220 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-14 21:52:58.647 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-14 21:52:58.649 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-14 21:52:58.652 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-14 21:52:58.654 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-14 21:52:58.655 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-14 21:52:58.657 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-14 21:52:58.659 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-14 21:52:58.661 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 21:58:09.798 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 21:58:09.799 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:01:01.057 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:01:01.058 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:01:45.648 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:01:45.649 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:02:17.582 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:02:17.582 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:04:17.924 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:04:17.925 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:05:07.331 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:05:07.333 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:05:41.297 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:05:41.299 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:06:15.295 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:06:15.296 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:10:45.085 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:10:45.087 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-14 22:10:49.343 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:16:14.761 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:16:14.762 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:16:45.653 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:16:45.653 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:18:34.733 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:18:34.733 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-14 22:18:41.188 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:19:17.048 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:19:17.048 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:19:51.444 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:19:51.444 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:20:56.628 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:20:56.629 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:21:21.729 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:21:21.729 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:22:12.536 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:22:12.538 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:22:45.588 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:22:45.589 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:23:35.822 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:23:35.823 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:25:09.522 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:25:09.524 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:25:47.680 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:25:47.682 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:26:27.222 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:26:27.223 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:28:34.668 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-14 22:28:34.669 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-14 22:29:57.208 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-15 00:14:28.863 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:15:44.201 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:15:44.206 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 00:15:50.136 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 00:15:50.165 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 00:15:50.169 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 00:15:50.171 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 00:15:50.172 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 00:15:50.173 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 00:15:50.175 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 00:15:50.177 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:16:52.793 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:16:52.794 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:17:15.776 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:17:15.776 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:19:07.067 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:19:07.068 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-15 00:21:28.276 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:21:55.032 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:21:55.036 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 00:21:57.428 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 00:21:57.488 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 00:21:57.491 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 00:21:57.493 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 00:21:57.495 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 00:21:57.497 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 00:21:57.498 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 00:21:57.500 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:24:44.304 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:24:44.305 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:25:25.458 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:25:25.459 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-15 00:27:05.615 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:27:26.097 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:27:26.101 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:29:37.706 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:29:37.707 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:30:18.228 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:30:18.228 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:31:11.716 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 00:31:11.717 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-15 11:56:20.011 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 11:56:43.732 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 11:56:43.739 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-15 11:56:52.272 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 11:57:45.963 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 11:57:45.964 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-15 12:02:43.107 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:03:02.757 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:03:02.759 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 0 2015-10-15 12:03:03.530 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Errors occurred while grabbing changed file listings !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:09:19.564 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:09:19.567 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:11:45.568 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:11:45.570 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:13:35.375 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:13:35.377 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:15:11.878 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:15:11.879 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:29:17.882 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:29:17.883 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:43:16.934 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:43:16.935 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.js.core 4 0 2015-10-15 12:43:35.592 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Expected JSFunction node when applying documentation; however, the node type was 'com.aptana.js.core.parsing.ast.JSGroupNode' instead. Source = (function () {var Spec;Spec = {enabled: true, equals: function (a, b) {var i;if (a instanceof Array && b instanceof Array) {if (a.length !== b.length) {return false;}for (i = 0; i < a.length; i++) {if (!Spec.equals(a[i], b[i])) {return false;}}return true;}if ((a !== null && b !== null) && (typeof a === "object" && typeof b === "object")) {for (i in a) {if (a.hasOwnProperty(i)) {if (!Spec.equals(a[i], b[i])) {return false;}}}return true;}return (a === b);}, should: function (expection, message) {Spec.currentIndicator++;if (!expection) {var warning = ["[Spec failed", Spec.currentTitle ? " (" + Spec.currentTitle + ")] " : "] ", (message || (Spec.currentMessage + " " + Spec.currentIndicator) || "")].join("");alert(warning);throw warning;}return !!expection;}, describe: function (title, spec) {Spec.currentTitle = title;var name;for (name in spec) {if (spec.hasOwnProperty(name)) {Spec.currentMessage = name;Spec.currentIndicator = 0;spec[name]();Spec.currentIndicator = null;}}Spec.currentMessage = Spec.currentTitle = null;}, Version: "0.1"};Spec.should.equal = function (a, b, message) {return Spec.should(Spec.equals(a, b), message);};Spec.should.not = function (a, message) {return Spec.should(!a, message);};Spec.should.not.equal = function (a, b, message) {return Spec.should(!Spec.equals(a, b), message);};if (!Spec.enabled) {Spec.describe = function () {};}Spec.describe("Spec object", {"should": function () {Spec.should(true);Spec.should(1);}, "should.not": function () {Spec.should.not(false);Spec.should.not(0);}, "should.equal": function () {Spec.should.equal(null, null);Spec.should.equal("", "");Spec.should.equal(12345, 12345);Spec.should.equal([0, 1, 2], [0, 1, 2]);Spec.should.equal([0, 1, [0, 1, 2]], [0, 1, [0, 1, 2]]);Spec.should.equal({}, {});Spec.should.equal({x: 1}, {x: 1});Spec.should.equal({x: [1]}, {x: [1]});}, "should.not.equal": function () {Spec.should.not.equal([1, 2, 3], [1, 2, 3, 4]);Spec.should.not.equal({x: 1}, [1, 2, 3, 4]);}});function strfhex32 (i32) {i32 &= 0xffffffff;if (i32 < 0) {i32 += 0x100000000;}var hex = Number(i32).toString(16);if (hex.length < 8) {hex = "00000000".substr(0, 8 - hex.length) + hex;}return hex;}Spec.describe("sha1", {"strfhex32": function () {Spec.should.equal(strfhex32(0x0), "00000000");Spec.should.equal(strfhex32(0x123), "00000123");Spec.should.equal(strfhex32(0xffffffff), "ffffffff");}});function padding_size (nbits) {var n = nbits + 1 + 64;return 512 * Math.ceil(n / 512) / 32;}Spec.describe("sha1", {"padding_size": function () {Spec.should.equal(padding_size(0), 16);Spec.should.equal(padding_size(1), 16);Spec.should.equal(padding_size(512 - 64 - 1), 16);Spec.should.equal(padding_size(512 - 64), 32);}});function word_array (m) {var nchar = m.length;var size = padding_size(nchar * 8);var words = new Array(size);var i;for (i = 0, j = 0; i < nchar;) {words[j++] = ((m.charCodeAt(i++) & 0xff) << 24) | ((m.charCodeAt(i++) & 0xff) << 16) | ((m.charCodeAt(i++) & 0xff) << 8) | ((m.charCodeAt(i++) & 0xff));}while (j < size) {words[j++] = 0;}return words;}Spec.describe("sha1", {"word_array": function () {Spec.should.equal(word_array(""), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);Spec.should.equal(word_array("1234")[0], 0x31323334);}});function write_nbits (words, length, nbits) {if (nbits > 0xffffffff) {var lo = nbits & 0xffffffff;if (lo < 0) {lo += 0x100000000;}words[length - 1] = lo;words[length - 2] = (nbits - lo) / 0x100000000;} else {words[length - 1] = nbits;words[length - 2] = 0x0;}return words;}Spec.describe("sha1", {"write_nbits": function () {Spec.should.equal(write_nbits([0, 0], 2, 1), [0, 1]);Spec.should.equal(write_nbits([0, 0], 2, 0xffffffff), [0, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x100000000), [1, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x1ffffffff), [1, 0xffffffff]);Spec.should.equal(write_nbits([0, 0], 2, 0x12300000000), [0x123, 0]);Spec.should.equal(write_nbits([0, 0], 2, 0x123abcdef12), [0x123, 0xabcdef12]);}});function padding (words, nbits) {var i = Math.floor(nbits / 32);words[i] |= (1 << (((i + 1) * 32) - nbits - 1));write_nbits(words, padding_size(nbits), nbits);return words;}function digest (words) {var i = 0, t = 0;var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];while (i < words.length) {var W = new Array(80);for (t = 0; t < 16; t++) {W[t] = words[i++];}for (t = 16; t < 80; t++) {var w = W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16];W[t] = (w << 1) | (w >>> 31);}var A = H[0], B = H[1], C = H[2], D = H[3], E = H[4];for (t = 0; t < 80; t++) {var tmp = ((A << 5) | (A >>> 27)) + E + W[t];if (t >= 0 && t <= 19) {tmp += ((B & C) | ((~B) & D)) + 0x5a827999;} else if (t >= 20 && t <= 39) {tmp += (B ^ C ^ D) + 0x6ed9eba1;} else if (t >= 40 && t <= 59) {tmp += ((B & C) | (B & D) | (C & D)) + 0x8f1bbcdc;} else if (t >= 60 && t <= 79) {tmp += (B ^ C ^ D) + 0xca62c1d6;}E = D;D = C;C = ((B << 30) | (B >>> 2));B = A;A = tmp;}H[0] = (H[0] + A) & 0xffffffff;H[1] = (H[1] + B) & 0xffffffff;H[2] = (H[2] + C) & 0xffffffff;H[3] = (H[3] + D) & 0xffffffff;H[4] = (H[4] + E) & 0xffffffff;if (H[0] < 0) {H[0] += 0x100000000;}if (H[1] < 0) {H[1] += 0x100000000;}if (H[2] < 0) {H[2] += 0x100000000;}if (H[3] < 0) {H[3] += 0x100000000;}if (H[4] < 0) {H[4] += 0x100000000;}}return H;}var SHA1 = function (message) {this.message = message;};function strfhex8 (i8) {i8 &= 0xff;if (i8 < 0) {i8 += 0x100;}var hex = Number(i8).toString(16);if (hex.length < 2) {hex = "00".substr(0, 2 - hex.length) + hex;}return hex;}_base64_keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";SHA1.prototype = {digest: function () {var nbits = this.message.length * 8;var words = padding(word_array(this.message), nbits);return digest(words);}, base64digest: function () {var hex = this.hexdigest();var output = "";var chr1, chr2, chr3, enc1, enc2, enc3, enc4;var i = 0;while (i < hex.length) {chr1 = parseInt(hex.substring(i, i + 2), 16);chr2 = parseInt(hex.substring(i + 2, i + 4), 16);chr3 = parseInt(hex.substring(i + 4, i + 6), 16);enc1 = chr1 >> 2;enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);enc4 = chr3 & 63;if (isNaN(chr2)) {enc3 = enc4 = 64;} else if (isNaN(chr3)) {enc4 = 64;}output = output + _base64_keyStr.charAt(enc1) + _base64_keyStr.charAt(enc2) + _base64_keyStr.charAt(enc3) + _base64_keyStr.charAt(enc4);i += 6;}return output;}, hexdigest: function () {var digest = this.digest();var i;for (i = 0; i < digest.length; i++) {digest[i] = strfhex32(digest[i]);}return digest.join("");}};Spec.describe("sha1", {"SHA1#hexdigest": function () {Spec.should.equal(new SHA1("").hexdigest(), "da39a3ee5e6b4b0d3255bfef95601890afd80709");Spec.should.equal(new SHA1("1").hexdigest(), "356a192b7913b04c54574d18c28d46e6395428ab");Spec.should.equal(new SHA1("Hello.").hexdigest(), "9b56d519ccd9e1e5b2a725e186184cdc68de0731");Spec.should.equal(new SHA1("9b56d519ccd9e1e5b2a725e186184cdc68de0731").hexdigest(), "f042dc98a62cbad68dbe21f11bbc1e9d416d2bf6");Spec.should.equal(new SHA1("MD5abZRVSXZVRcasdfasdddddddddddddddds+BNRJFSLKJFN+SEONBBJFJXLKCJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wurJFSE)RUNVXDLILKVJRN)#NVFJ)WVFWRW#)NVS$Q=$dddddddddddddWV;no9wuraddddddasdfasdfd").hexdigest(), "662dbf4ebc9cdb4224766e87634e5ba9e6de672b");}});return SHA1;}()) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:47:22.141 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:47:22.143 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:47:57.862 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:47:57.862 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:49:30.827 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:49:30.829 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:50:12.096 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:50:12.097 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:50:44.115 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:50:44.116 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:52:31.119 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:52:31.120 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:53:13.523 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:53:13.523 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:53:52.997 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:53:52.998 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.core 4 0 2015-10-15 12:54:26.596 !MESSAGE (Build 4.3.1.201509302304) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:205) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKLocator.initialize(TitaniumMobileSDKLocator.java:92) at com.appcelerator.titanium.core.mobile.SDKLocator.lazyInitialize(SDKLocator.java:237) at com.appcelerator.titanium.core.mobile.SDKLocator.getAvailable(SDKLocator.java:365) at com.appcelerator.titanium.core.mobile.SDKLocator.findVersion(SDKLocator.java:409) at com.appcelerator.titanium.core.mobile.SDKLocator.findVersion(SDKLocator.java:393) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:68) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.editor.tss.internal.text.TSSHover.getHoverInfo2(TSSHover.java:95) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverInfo2(CommonSourceViewerConfiguration.java:687) at org.eclipse.jface.text.TextViewerHoverManager$4.run(TextViewerHoverManager.java:166) !ENTRY org.eclipse.jface.text 4 0 2015-10-15 12:54:26.598 !MESSAGE Unexpected runtime error while computing a text hover !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKLocator.initialize(TitaniumMobileSDKLocator.java:94) at com.appcelerator.titanium.core.mobile.SDKLocator.lazyInitialize(SDKLocator.java:237) at com.appcelerator.titanium.core.mobile.SDKLocator.getAvailable(SDKLocator.java:365) at com.appcelerator.titanium.core.mobile.SDKLocator.findVersion(SDKLocator.java:409) at com.appcelerator.titanium.core.mobile.SDKLocator.findVersion(SDKLocator.java:393) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:68) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.editor.tss.internal.text.TSSHover.getHoverInfo2(TSSHover.java:95) at com.aptana.editor.common.CommonSourceViewerConfiguration$TextHover.getHoverInfo2(CommonSourceViewerConfiguration.java:687) at org.eclipse.jface.text.TextViewerHoverManager$4.run(TextViewerHoverManager.java:166) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:28.994 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:28.995 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:30.517 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:30.517 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:35.101 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:35.101 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:36.633 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:36.633 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:39.032 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:39.032 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:39.186 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:39.186 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:39.228 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.getQueryHelper(AlloyViewValidator.java:431) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:224) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:39.228 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:39.230 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:39.231 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:44.720 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:44.721 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:44.736 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.fullReconcile(CommonReconcilingStrategy.java:477) at com.aptana.editor.common.text.reconciler.CommonReconciler.process(CommonReconciler.java:162) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:206) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:44.736 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:44.935 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.getQueryHelper(AlloyViewValidator.java:431) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:224) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:44.936 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:44.938 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.core.build.UnifiedBuilder.buildEnding(UnifiedBuilder.java:230) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:201) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:358) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:381) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:44.938 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:54:49.453 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.core.build.UnifiedBuilder.indexProjectBuildPaths(UnifiedBuilder.java:356) at com.aptana.core.build.UnifiedBuilder.incrementalBuild(UnifiedBuilder.java:257) at com.aptana.core.build.UnifiedBuilder.build(UnifiedBuilder.java:197) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:734) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:299) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:302) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:263) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:401) at org.eclipse.core.internal.resources.Project$1.run(Project.java:618) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.core.internal.resources.Project.internalBuild(Project.java:597) at org.eclipse.core.internal.resources.Project.build(Project.java:114) at org.eclipse.debug.core.model.LaunchConfigurationDelegate$1.run(LaunchConfigurationDelegate.java:430) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2295) at org.eclipse.debug.core.model.LaunchConfigurationDelegate.buildProjects(LaunchConfigurationDelegate.java:437) at org.eclipse.debug.core.model.LaunchConfigurationDelegate.buildForLaunch(LaunchConfigurationDelegate.java:130) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:855) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:739) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1039) at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1256) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:54:49.453 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.355 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.356 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.359 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.359 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.362 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.362 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.365 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.365 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.368 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.368 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.371 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.371 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.373 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.375 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.378 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.379 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.381 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.382 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.384 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.385 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.387 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.388 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.390 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.391 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.393 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.394 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.396 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.createQueryHelper(AlloyViewContentAssistProcessor.java:69) at com.aptana.editor.xml.contentassist.XMLContentAssistProcessor.(XMLContentAssistProcessor.java:122) at com.appcelerator.titanium.alloy.internal.ui.contentassist.AlloyViewContentAssistProcessor.(AlloyViewContentAssistProcessor.java:63) at com.appcelerator.titanium.alloy.internal.ui.AlloyXMLEditor$1.getContentAssistProcessor(AlloyXMLEditor.java:37) at com.aptana.editor.common.CommonSourceViewerConfiguration.getContentAssistant(CommonSourceViewerConfiguration.java:237) at org.eclipse.jface.text.source.SourceViewer.configure(SourceViewer.java:464) at com.aptana.editor.common.viewer.CommonProjectionViewer.configure(CommonProjectionViewer.java:168) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:54) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:447) at com.aptana.editor.common.internal.AbstractFoldingEditor.createPartControl(AbstractFoldingEditor.java:123) at com.aptana.editor.common.AbstractThemeableEditor.createPartControl(AbstractThemeableEditor.java:329) at com.aptana.editor.xml.XMLEditor.createPartControl(XMLEditor.java:78) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:141) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:99) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:327) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:888) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:869) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:120) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:337) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:258) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:127) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:983) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:662) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:766) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:737) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:731) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:715) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$1.handleEvent(PartServiceImpl.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.397 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.928 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant.getHelper(ViewIndexingParticipant.java:253) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant.getUserAgentsForType(ViewIndexingParticipant.java:241) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant$ASTVisitor.include(ViewIndexingParticipant.java:220) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant$ASTVisitor.include(ViewIndexingParticipant.java:1) at com.aptana.parsing.util.ParseUtil.treeApply(ParseUtil.java:155) at com.aptana.parsing.util.ParseUtil.treeApply(ParseUtil.java:121) at com.appcelerator.titanium.alloy.internal.core.build.ViewIndexingParticipant.index(ViewIndexingParticipant.java:81) at com.aptana.core.internal.build.IndexBuildParticipant.buildFile(IndexBuildParticipant.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildFile(LazyBuildParticipant.java:72) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:337) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.initialReconcile(CommonReconcilingStrategy.java:149) at com.aptana.editor.common.text.reconciler.CommonReconciler.initialProcess(CommonReconciler.java:188) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:173) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.928 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.949 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.getQueryHelper(AlloyViewValidator.java:431) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.doBuildFile(AlloyViewValidator.java:224) at com.appcelerator.titanium.alloy.core.validators.AlloyViewValidator.buildEnding(AlloyViewValidator.java:132) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.initialReconcile(CommonReconcilingStrategy.java:149) at com.aptana.editor.common.text.reconciler.CommonReconciler.initialProcess(CommonReconciler.java:188) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:173) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:14.950 !MESSAGE Titanium SDK not found !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 12:55:29.432 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to determine the Titanium SDK content assist metadata path when connecting metadata to project 'AlumniConnect' !STACK 1 org.eclipse.core.runtime.CoreException: Titanium SDK not found at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getSDKEntity(TitaniumMobileSDKTools.java:76) at com.appcelerator.titanium.core.mobile.TitaniumMobileSDKTools.getProjectSDK(TitaniumMobileSDKTools.java:49) at com.appcelerator.titanium.core.util.ContentAssistMetadataUtils.getProjectMetadataBuildPath(ContentAssistMetadataUtils.java:135) at com.appcelerator.titanium.core.internal.mobile.SDKBuildPathContributor.getBuildPathEntries(SDKBuildPathContributor.java:93) at com.aptana.buildpath.core.BuildPathManager.getBuildPaths(BuildPathManager.java:321) at com.aptana.js.core.index.JSIndexQueryHelper.getIndices(JSIndexQueryHelper.java:123) at com.aptana.js.core.index.JSIndexQueryHelper.(JSIndexQueryHelper.java:98) at com.appcelerator.titanium.alloy.core.index.AlloyQueryHelper.(AlloyQueryHelper.java:115) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.createQueryHelper(UnusedRuleValidator.java:206) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.checkUnusedRules(UnusedRuleValidator.java:162) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.doBuildFile(UnusedRuleValidator.java:125) at com.appcelerator.titanium.alloy.internal.core.build.UnusedRuleValidator.buildEnding(UnusedRuleValidator.java:97) at com.aptana.core.internal.build.LazyBuildParticipant.buildEnding(LazyBuildParticipant.java:67) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.runParticipants(CommonReconcilingStrategy.java:341) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:277) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.reconcile(CommonReconcilingStrategy.java:235) at com.aptana.editor.common.text.reconciler.CommonReconcilingStrategy.initialReconcile(CommonReconcilingStrategy.java:149) at com.aptana.editor.common.text.reconciler.CommonReconciler.initialProcess(CommonReconciler.java:188) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:173) !SUBENTRY 1 com.appcelerator.titanium.core 4 0 2015-10-15 12:55:29.432 !MESSAGE Titanium SDK not found !SESSION 2015-10-15 13:05:29.059 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-10-15 13:05:32.335 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:05:44.451 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:05:44.457 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-15 13:05:46.794 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 13:05:46.795 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 13:05:46.795 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 13:05:46.795 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 13:05:59.733 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 13:05:59.749 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 13:05:59.765 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 13:05:59.767 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 13:05:59.769 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 13:05:59.770 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 13:05:59.772 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 13:05:59.773 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:06:54.231 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:06:54.233 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:09:12.040 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:09:12.041 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-15 13:11:00.969 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.resources 2 10035 2015-10-15 13:11:04.526 !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. !ENTRY com.aptana.git.core 4 1 2015-10-15 13:11:13.420 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-10-15 13:11:13.421 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-15 13:11:13.422 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-15 13:11:13.423 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James"): error=7, Argument list too long at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=7, Argument list too long at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:11:13.861 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:11:13.862 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 13:11:44.580 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 13:11:44.597 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 13:11:44.602 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 13:11:44.604 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 13:11:44.605 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 13:11:44.606 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 13:11:44.608 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 13:11:44.610 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:12:43.352 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:12:43.353 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:15:34.629 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:15:34.630 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:16:10.585 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:16:10.587 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:17:22.974 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:17:22.975 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:18:02.809 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:18:02.811 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-15 13:18:21.107 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.NullPointerException at org.eclipse.jface.text.TextViewer.updateTextListeners(TextViewer.java:2825) at org.eclipse.jface.text.TextViewer.invalidateTextPresentation(TextViewer.java:3496) at org.eclipse.jface.text.source.AnnotationPainter.invalidateTextPresentation(AnnotationPainter.java:972) at org.eclipse.jface.text.source.AnnotationPainter.updatePainting(AnnotationPainter.java:954) at org.eclipse.jface.text.source.AnnotationPainter.access$1(AnnotationPainter.java:948) at org.eclipse.jface.text.source.AnnotationPainter$1.run(AnnotationPainter.java:1087) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) ... 23 more !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:23:29.616 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:23:29.625 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:24:40.590 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:24:40.592 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:27:23.557 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:27:23.559 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:28:37.850 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:28:37.851 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:31:31.208 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:31:31.210 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:31:58.051 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:31:58.052 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:37:10.916 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:37:10.917 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:38:53.722 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:38:53.723 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:40:09.656 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:40:09.657 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:45:05.074 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:45:05.076 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:54:10.007 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:54:10.008 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:55:52.503 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:55:52.504 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui.workbench 4 2 2015-10-15 13:58:22.924 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-15 13:58:22.926 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-15 13:58:22.927 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-15 13:58:27.723 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-15 13:58:43.195 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:59:03.357 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 13:59:03.361 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 13:59:07.354 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 13:59:07.357 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 13:59:07.360 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 13:59:07.367 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 13:59:07.369 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 13:59:07.372 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 13:59:07.373 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 13:59:07.383 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:00:24.746 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:00:24.748 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:03:19.447 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:03:19.448 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-15 14:04:10.886 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:04:32.408 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:04:32.413 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-15 14:04:32.934 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 14:04:32.934 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 14:04:32.935 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 14:04:32.935 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 14:04:36.580 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 14:04:36.607 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 14:04:36.611 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 14:04:36.613 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 14:04:36.615 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 14:04:36.617 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 14:04:36.619 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 14:04:36.622 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-10-15 14:07:11.696 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:07:20.233 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:07:20.235 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-15 14:10:01.247 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.git.core 4 1 2015-10-15 14:10:27.989 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 14:10:27.989 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 14:10:27.989 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 14:10:27.990 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:10:28.667 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:10:28.668 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 14:10:31.419 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 14:10:31.444 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 14:10:31.448 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 14:10:31.450 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 14:10:31.453 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 14:10:31.455 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 14:10:31.458 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 14:10:31.460 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:11:35.356 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:11:35.357 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:14:04.377 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:14:04.378 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:15:12.575 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:15:12.576 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:17:49.211 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:17:49.212 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 4 2 2015-10-15 14:17:58.983 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:437) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:309) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:225) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:222) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:242) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-15 14:18:03.055 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-15 14:53:55.306 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:54:15.121 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:54:15.126 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-15 14:59:29.122 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:59:56.179 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 14:59:56.183 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 15:00:03.980 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 15:00:04.006 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 15:00:04.009 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 15:00:04.011 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 15:00:04.012 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 15:00:04.014 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 15:00:04.015 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 15:00:04.017 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:04:08.900 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:04:08.902 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-15 15:06:39.949 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:07:22.470 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:07:22.475 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-15 15:07:22.694 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 15:07:22.694 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 15:07:22.694 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 15:07:22.694 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 15:07:28.215 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 15:07:28.239 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 15:07:28.243 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 15:07:28.245 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 15:07:28.246 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 15:07:28.248 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 15:07:28.249 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 15:07:28.251 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.core.jobs 2 2 2015-10-15 15:12:42.662 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-15 15:13:11.452 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:13:31.436 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:13:31.440 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:16:57.868 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:16:57.871 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:20:17.388 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:20:17.389 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:21:55.732 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:21:55.733 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:22:39.463 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:22:39.463 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:23:30.945 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:23:30.946 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:24:50.822 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:24:50.822 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:27:13.706 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:27:13.707 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:28:07.601 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:28:07.603 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-15 15:29:52.133 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 15:29:52.133 !MESSAGE Java heap space !STACK 0 java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOfRange(Arrays.java:2694) at java.lang.String.(String.java:203) at java.lang.StringBuilder.toString(StringBuilder.java:405) at com.aptana.core.util.InputStreamGobbler.getResult(InputStreamGobbler.java:60) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:393) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:280) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:33:14.079 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:33:14.081 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:35:00.467 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:35:00.468 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:36:23.599 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:36:23.601 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:38:18.220 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:38:18.222 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-15 15:38:30.553 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-15 15:38:51.804 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.ui 4 0 2015-10-15 15:39:09.399 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:39:11.646 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:39:11.646 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-15 15:39:22.371 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-15 15:39:22.523 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-15 15:39:22.591 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-15 15:39:22.904 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-15 15:39:27.420 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.jobs 2 2 2015-10-15 15:39:34.772 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !SESSION 2015-10-15 15:39:40.366 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:40:01.658 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 15:40:01.663 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-15 15:43:14.434 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-10-15 15:43:14.435 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-15 20:20:42.162 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-10-15 20:20:51.884 !MESSAGE (Build 4.3.1.1442888904) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-15 20:20:51.887 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 20:21:57.360 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 20:21:57.365 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 20:22:05.168 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 20:22:05.195 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 20:22:05.200 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 20:22:05.202 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 20:22:05.203 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 20:22:05.205 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 20:22:05.206 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 20:22:05.208 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-10-15 20:27:03.561 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 20:27:28.327 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 20:27:28.331 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 20:27:31.192 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 20:27:31.195 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 20:27:31.197 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 20:27:31.200 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 20:27:31.202 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 20:27:31.216 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 20:27:31.226 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 20:27:31.228 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !SESSION 2015-10-15 20:55:55.472 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 20:56:16.287 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 20:56:16.291 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-15 20:56:21.398 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SESSION 2015-10-15 21:01:12.391 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:01:50.254 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:01:50.258 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 21:01:57.201 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 21:01:57.203 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 21:01:57.206 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 21:01:57.208 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 21:01:57.210 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 21:01:57.212 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 21:01:57.214 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 21:01:57.244 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:03:53.757 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:03:53.758 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:04:39.917 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:04:39.917 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:05:05.273 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:05:05.274 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-15 21:07:30.037 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:07:51.028 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:07:51.032 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 0 2015-10-15 21:13:19.532 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Errors occurred while grabbing changed file listings !ENTRY org.eclipse.core.jobs 4 2 2015-10-15 21:13:35.365 !MESSAGE An internal error occurred during: "Refreshing git index". !STACK 0 java.lang.OutOfMemoryError: GC overhead limit exceeded at com.aptana.git.core.model.GitIndex.refresh(GitIndex.java:303) at com.aptana.git.core.model.GitIndexRefreshJob.run(GitIndexRefreshJob.java:103) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-15 21:13:43.188 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-15 21:14:39.776 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:14:58.612 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:14:58.614 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 21:15:03.134 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 21:15:03.155 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 21:15:03.159 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 21:15:03.163 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 21:15:03.164 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 21:15:03.167 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 21:15:03.169 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 21:15:03.171 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:18:20.996 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:18:20.998 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-15 21:20:18.573 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:20:45.737 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:20:45.738 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-15 21:20:46.218 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 21:20:46.219 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 21:20:46.220 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 21:20:46.220 !MESSAGE Failed to acquire lock for git repository. !ENTRY org.eclipse.ui 4 0 2015-10-15 21:21:14.410 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:25:54.999 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:25:55.001 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-15 21:26:41.329 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-15 21:26:49.254 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:27:09.621 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:27:09.623 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:28:49.765 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:28:49.766 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:30:36.060 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:30:36.061 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-15 21:32:19.226 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:32:42.676 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:32:42.678 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-15 21:32:42.961 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 21:32:42.961 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 21:32:42.961 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-15 21:32:42.961 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-15 21:32:51.191 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-15 21:32:51.227 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-15 21:32:51.231 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-15 21:32:51.233 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-15 21:32:51.236 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-15 21:32:51.238 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-15 21:32:51.240 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-15 21:32:51.241 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:37:20.327 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-15 21:37:20.329 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui.workbench 4 2 2015-10-15 21:37:31.551 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui 4 4 2015-10-15 21:37:31.553 !MESSAGE Exception in Decorator. The 'Git Decorator' decorator will be disabled. !ENTRY org.eclipse.ui 4 4 2015-10-15 21:37:31.553 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at com.aptana.git.ui.internal.GitColors.getThemeManager(GitColors.java:116) at com.aptana.git.ui.internal.GitColors.getActiveTheme(GitColors.java:111) at com.aptana.git.ui.internal.GitColors.redFG(GitColors.java:74) at com.aptana.git.ui.internal.GitLightweightDecorator.decorateFile(GitLightweightDecorator.java:179) at com.aptana.git.ui.internal.GitLightweightDecorator.decorate(GitLightweightDecorator.java:135) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:267) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:83) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:367) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:349) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:372) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:332) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-15 21:37:36.351 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-16 07:50:59.612 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 07:51:19.965 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 07:51:19.970 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.core 4 0 2015-10-16 07:52:10.287 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Could not encode: http://(URI.java:680) at com.aptana.core.util.URLEncoder.encode(URLEncoder.java:47) at com.aptana.editor.common.text.hyperlink.URIHyperlink.(URIHyperlink.java:45) at com.aptana.editor.common.text.hyperlink.HyperlinkDetector.detectHyperlinks(HyperlinkDetector.java:115) at org.eclipse.ui.texteditor.HyperlinkDetectorRegistry$HyperlinkDetectorDelegate.detectHyperlinks(HyperlinkDetectorRegistry.java:80) at org.eclipse.jface.text.hyperlink.HyperlinkManager.findHyperlinks(HyperlinkManager.java:289) at org.eclipse.jface.text.hyperlink.HyperlinkManager.findHyperlinks(HyperlinkManager.java:261) at org.eclipse.jface.text.hyperlink.HyperlinkManager.mouseMove(HyperlinkManager.java:469) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:212) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 07:53:21.742 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 07:53:21.743 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-16 07:54:01.189 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.IllegalArgumentException: Argument not valid) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:4422) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkParent(Widget.java:511) at org.eclipse.swt.widgets.Widget.(Widget.java:132) at org.eclipse.swt.widgets.Control.(Control.java:116) at org.eclipse.swt.widgets.Scrollable.(Scrollable.java:73) at org.eclipse.swt.widgets.Composite.(Composite.java:91) at org.eclipse.ui.forms.widgets.LayoutComposite.(LayoutComposite.java:24) at org.eclipse.ui.forms.widgets.FormToolkit.createComposite(FormToolkit.java:311) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:555) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) ... 23 more !ENTRY org.eclipse.core.jobs 4 2 2015-10-16 07:55:22.284 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:437) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:309) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:225) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:222) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:242) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-16 07:55:24.053 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-10-16 07:55:24.053 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-16 11:40:04.633 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 11:40:24.857 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 11:40:24.862 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-16 11:40:37.571 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-16 11:40:37.601 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-16 11:40:37.603 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-16 11:40:37.605 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-16 11:40:37.606 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-16 11:40:37.608 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-16 11:40:37.609 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-16 11:40:37.610 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-10-16 11:41:37.848 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.jobs 4 2 2015-10-16 11:41:47.939 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:437) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:309) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:225) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:222) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:242) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-16 11:41:50.585 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-10-16 11:41:50.585 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !SESSION 2015-10-16 11:49:07.041 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.samples 4 0 2015-10-16 11:50:26.265 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-16 11:50:26.266 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-16 11:50:26.299 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-16 11:50:26.302 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-16 11:50:26.305 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-16 11:50:26.308 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-16 11:50:26.311 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-16 11:50:26.312 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 11:50:28.233 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 11:50:28.233 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 12:01:17.163 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 12:01:17.165 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 12:04:32.695 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 12:04:32.696 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-16 12:44:28.530 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-16 13:03:05.618 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 13:03:22.299 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-16 13:03:22.309 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 4 2 2015-10-16 13:03:33.987 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:437) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:309) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:225) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:222) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:242) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.ui.workbench 4 2 2015-10-16 13:03:36.090 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider.getTitanium360Manager(AppceleratorModuleReleaseProvider.java:74) at com.appcelerator.titanium360.core.update.AppceleratorModuleReleaseProvider.getReleases(AppceleratorModuleReleaseProvider.java:60) at com.appcelerator.titanium.update.core.TitaniumReleaseProviderManager.getReleases(TitaniumReleaseProviderManager.java:192) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.getTitaniumReleaseUpdates(TitaniumReleasesUpdater.java:1007) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasModuleUpdates(TitaniumReleasesUpdater.java:254) at com.appcelerator.titanium.update.internal.core.TitaniumReleasesUpdater.hasUpdates(TitaniumReleasesUpdater.java:203) at com.appcelerator.titanium.update.ui.TitaniumUpdateStartup.earlyStartup(TitaniumUpdateStartup.java:61) at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:89) at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:67) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-10-16 13:03:36.090 !MESSAGE An internal error occurred during: "Workbench early startup". !STACK 0 java.lang.NullPointerException at org.eclipse.core.internal.runtime.InternalPlatform.getLog(InternalPlatform.java:349) at org.eclipse.core.runtime.Plugin.getLog(Plugin.java:297) at org.eclipse.ui.internal.WorkbenchPlugin.log(WorkbenchPlugin.java:834) at org.eclipse.ui.internal.EarlyStartupRunnable.handleException(EarlyStartupRunnable.java:83) at org.eclipse.core.runtime.SafeRunner.handleException(SafeRunner.java:75) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:44) at org.eclipse.ui.internal.Workbench$56.run(Workbench.java:2755) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-16 13:03:36.262 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-10-16 13:03:36.262 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-10-16 13:03:36.263 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2 !SESSION 2015-10-17 13:39:00.315 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-10-17 13:39:09.837 !MESSAGE (Build 4.3.1.1442888904) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-17 13:39:09.841 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 13:39:42.441 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 13:39:42.457 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-17 13:44:52.697 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 13:45:20.821 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 13:45:20.826 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 1 2015-10-17 13:45:22.917 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-17 13:45:22.918 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-17 13:45:22.918 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-17 13:45:22.918 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-17 13:45:36.027 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-17 13:45:36.028 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-17 13:45:36.031 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-17 13:45:36.039 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-17 13:45:36.041 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-17 13:45:36.043 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-17 13:45:36.047 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-17 13:45:36.048 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.aptana.git.core 4 0 2015-10-17 13:50:12.560 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Errors occurred while grabbing changed file listings !ENTRY org.eclipse.ltk.ui.refactoring 4 10000 2015-10-17 13:56:54.002 !MESSAGE Internal Error !STACK 1 org.eclipse.core.internal.resources.ResourceException: Problems encountered while deleting resources. at org.eclipse.core.internal.resources.Resource.delete(Resource.java:816) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Could not delete '/Problem_Res/.git'. org.eclipse.core.internal.resources.ResourceException: Problems encountered while deleting resources. at org.eclipse.core.internal.localstore.FileSystemResourceManager.delete(FileSystemResourceManager.java:351) at org.eclipse.core.internal.resources.ResourceTree.internalDeleteFolder(ResourceTree.java:352) at org.eclipse.core.internal.resources.ResourceTree.standardDeleteFolder(ResourceTree.java:798) at com.aptana.git.core.GitMoveDeleteHook.deleteProject(GitMoveDeleteHook.java:155) at org.eclipse.team.internal.core.MoveDeleteManager.deleteProject(MoveDeleteManager.java:74) at org.eclipse.core.internal.resources.Resource.unprotectedDelete(Resource.java:1986) at org.eclipse.core.internal.resources.Resource.delete(Resource.java:803) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Problems encountered while deleting files. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. Contains: Could not delete '/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res'. org.eclipse.core.runtime.CoreException: Problems encountered while deleting files. at org.eclipse.core.internal.filesystem.local.LocalFile.delete(LocalFile.java:131) at org.eclipse.core.internal.resources.ResourceTree.internalDeleteProject(ResourceTree.java:437) at org.eclipse.core.internal.resources.ResourceTree.standardDeleteProject(ResourceTree.java:837) at org.eclipse.core.internal.resources.Resource.unprotectedDelete(Resource.java:1987) at org.eclipse.core.internal.resources.Resource.delete(Resource.java:803) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res. Contains: Could not delete '/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res'. !SUBENTRY 1 org.eclipse.core.resources 4 273 2015-10-17 13:56:54.006 !MESSAGE Problems encountered while deleting resources. !SUBENTRY 2 org.eclipse.core.resources 4 273 2015-10-17 13:56:54.006 !MESSAGE Could not delete '/Problem_Res/.git'. !STACK 1 org.eclipse.core.internal.resources.ResourceException: Problems encountered while deleting resources. at org.eclipse.core.internal.localstore.FileSystemResourceManager.delete(FileSystemResourceManager.java:351) at org.eclipse.core.internal.resources.ResourceTree.internalDeleteFolder(ResourceTree.java:352) at org.eclipse.core.internal.resources.ResourceTree.standardDeleteFolder(ResourceTree.java:798) at com.aptana.git.core.GitMoveDeleteHook.deleteProject(GitMoveDeleteHook.java:155) at org.eclipse.team.internal.core.MoveDeleteManager.deleteProject(MoveDeleteManager.java:74) at org.eclipse.core.internal.resources.Resource.unprotectedDelete(Resource.java:1986) at org.eclipse.core.internal.resources.Resource.delete(Resource.java:803) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Problems encountered while deleting files. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. !SUBENTRY 3 org.eclipse.core.resources 4 273 2015-10-17 13:56:54.007 !MESSAGE Problems encountered while deleting resources. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.007 !MESSAGE Problems encountered while deleting files. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.007 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.007 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.007 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.007 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.007 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.007 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.008 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.008 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.008 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.008 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.008 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.008 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.008 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.009 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.009 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.009 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.009 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.009 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.009 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.009 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.009 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.009 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.010 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.010 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.010 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.010 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.010 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.010 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.010 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.010 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.010 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.011 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.011 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.011 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.011 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.011 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.011 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.011 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.011 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.011 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.011 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.012 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.012 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.012 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.012 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.012 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.012 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.012 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.012 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.012 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.013 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.013 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.013 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.013 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.013 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.013 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.013 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.013 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.013 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.013 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.014 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.014 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.014 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.014 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.014 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.014 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.014 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.014 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.014 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.015 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.015 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.015 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.015 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.015 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.015 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.015 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.015 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.015 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.015 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.016 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.016 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.016 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.016 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.016 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.017 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.017 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.017 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.017 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.017 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.018 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.018 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.018 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.018 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.019 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.019 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.019 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.019 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.019 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.020 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.020 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.020 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.020 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.020 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.020 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.021 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.021 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.021 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.021 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.021 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.022 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.022 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.022 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.022 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.022 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.022 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.023 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.023 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.023 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.023 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.023 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.023 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.023 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.024 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.024 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.024 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.024 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.024 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.024 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.025 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.025 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.025 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.025 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.025 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.025 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.025 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.026 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.026 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.026 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.026 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.026 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.026 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.026 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.027 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.027 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.027 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.027 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.027 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.027 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.027 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.027 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.027 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.028 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.028 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.028 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.028 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.028 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.028 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.028 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.028 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.028 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.029 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.029 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.029 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.029 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.029 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.029 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.029 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.029 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.029 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.030 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.030 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.030 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.030 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.030 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.030 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.030 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.030 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.030 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.031 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.031 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.031 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.031 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. !SUBENTRY 2 org.eclipse.core.resources 4 273 2015-10-17 13:56:54.031 !MESSAGE Could not delete '/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res'. !STACK 1 org.eclipse.core.runtime.CoreException: Problems encountered while deleting files. at org.eclipse.core.internal.filesystem.local.LocalFile.delete(LocalFile.java:131) at org.eclipse.core.internal.resources.ResourceTree.internalDeleteProject(ResourceTree.java:437) at org.eclipse.core.internal.resources.ResourceTree.standardDeleteProject(ResourceTree.java:837) at org.eclipse.core.internal.resources.Resource.unprotectedDelete(Resource.java:1987) at org.eclipse.core.internal.resources.Resource.delete(Resource.java:803) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res. !SUBENTRY 3 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.032 !MESSAGE Problems encountered while deleting files. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.032 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.032 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.032 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.032 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.032 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.032 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.033 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.033 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.033 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.033 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.033 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.033 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.033 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.033 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.033 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.034 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.034 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.034 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.034 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.034 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.034 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.034 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.034 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.034 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.034 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.035 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.035 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.035 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.035 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.035 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.035 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.035 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.035 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.035 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.035 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.035 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.036 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.036 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.036 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.036 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.036 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.036 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.036 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.036 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.036 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.036 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.037 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.037 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.037 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.037 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.037 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.037 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.037 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.037 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.037 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.037 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.038 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.038 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.038 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.038 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.038 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.038 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.038 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.038 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.038 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.038 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.039 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.039 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.039 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.039 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.039 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.039 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.039 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.039 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.039 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.039 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.039 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.040 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.040 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.040 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.040 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.040 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.040 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.040 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.040 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.040 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.040 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.041 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.041 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.041 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.041 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.041 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.041 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.041 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.041 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.041 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.042 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.042 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.042 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.042 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.042 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.042 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.042 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.042 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.042 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.042 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.043 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.043 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.043 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.043 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.043 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.043 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.043 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.043 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.043 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.043 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.043 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.044 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.044 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.044 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.044 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.044 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.044 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.044 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.044 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.044 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.045 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.045 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.045 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.045 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.045 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.045 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.045 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.045 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.045 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.045 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.046 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.046 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.046 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.046 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.046 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.046 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.046 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.046 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.046 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.046 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.047 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.047 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.047 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.047 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.047 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.047 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.047 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.047 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.047 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.047 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.047 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.048 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.048 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.048 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.048 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.048 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.048 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.048 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.048 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.048 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.048 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.048 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.049 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.049 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.049 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.049 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.049 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.049 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.049 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.049 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.049 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.049 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.050 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.050 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.050 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.050 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:56:54.050 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res. !SUBENTRY 2 org.eclipse.core.resources 4 273 2015-10-17 13:56:54.050 !MESSAGE Could not delete '/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res'. !ENTRY com.aptana.git.core 4 1 2015-10-17 13:57:01.865 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-17 13:57:01.867 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-17 13:57:01.869 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-17 13:57:01.869 !MESSAGE Failed to acquire lock for git repository. !ENTRY com.aptana.git.core 4 0 2015-10-17 13:57:09.514 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Errors occurred while grabbing changed file listings !ENTRY org.eclipse.ltk.ui.refactoring 4 10000 2015-10-17 13:57:10.531 !MESSAGE Internal Error !STACK 1 org.eclipse.core.internal.resources.ResourceException: Problems encountered while deleting resources. at org.eclipse.core.internal.resources.Resource.delete(Resource.java:816) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Could not delete '/Problem_Res/.git'. org.eclipse.core.internal.resources.ResourceException: Problems encountered while deleting resources. at org.eclipse.core.internal.localstore.FileSystemResourceManager.delete(FileSystemResourceManager.java:351) at org.eclipse.core.internal.resources.ResourceTree.internalDeleteFolder(ResourceTree.java:352) at org.eclipse.core.internal.resources.ResourceTree.standardDeleteFolder(ResourceTree.java:798) at com.aptana.git.core.GitMoveDeleteHook.deleteProject(GitMoveDeleteHook.java:155) at org.eclipse.team.internal.core.MoveDeleteManager.deleteProject(MoveDeleteManager.java:74) at org.eclipse.core.internal.resources.Resource.unprotectedDelete(Resource.java:1986) at org.eclipse.core.internal.resources.Resource.delete(Resource.java:803) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Problems encountered while deleting files. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. Contains: Could not delete '/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res'. org.eclipse.core.runtime.CoreException: Problems encountered while deleting files. at org.eclipse.core.internal.filesystem.local.LocalFile.delete(LocalFile.java:131) at org.eclipse.core.internal.resources.ResourceTree.internalDeleteProject(ResourceTree.java:437) at org.eclipse.core.internal.resources.ResourceTree.standardDeleteProject(ResourceTree.java:837) at org.eclipse.core.internal.resources.Resource.unprotectedDelete(Resource.java:1987) at org.eclipse.core.internal.resources.Resource.delete(Resource.java:803) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res. Contains: Could not delete '/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res'. !SUBENTRY 1 org.eclipse.core.resources 4 273 2015-10-17 13:57:10.535 !MESSAGE Problems encountered while deleting resources. !SUBENTRY 2 org.eclipse.core.resources 4 273 2015-10-17 13:57:10.536 !MESSAGE Could not delete '/Problem_Res/.git'. !STACK 1 org.eclipse.core.internal.resources.ResourceException: Problems encountered while deleting resources. at org.eclipse.core.internal.localstore.FileSystemResourceManager.delete(FileSystemResourceManager.java:351) at org.eclipse.core.internal.resources.ResourceTree.internalDeleteFolder(ResourceTree.java:352) at org.eclipse.core.internal.resources.ResourceTree.standardDeleteFolder(ResourceTree.java:798) at com.aptana.git.core.GitMoveDeleteHook.deleteProject(GitMoveDeleteHook.java:155) at org.eclipse.team.internal.core.MoveDeleteManager.deleteProject(MoveDeleteManager.java:74) at org.eclipse.core.internal.resources.Resource.unprotectedDelete(Resource.java:1986) at org.eclipse.core.internal.resources.Resource.delete(Resource.java:803) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Problems encountered while deleting files. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. !SUBENTRY 3 org.eclipse.core.resources 4 273 2015-10-17 13:57:10.540 !MESSAGE Problems encountered while deleting resources. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.540 !MESSAGE Problems encountered while deleting files. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.540 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.540 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.540 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.541 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.541 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.541 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.541 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.541 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.541 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.541 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.541 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.541 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.541 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.542 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.542 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.542 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.542 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.542 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.542 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.542 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.542 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.542 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.544 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.544 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.544 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.544 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.544 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.544 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.544 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.544 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.544 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.544 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.545 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.545 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.545 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.545 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.545 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.545 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.545 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.545 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.545 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.546 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.546 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.546 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.546 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.546 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.546 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.546 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.546 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.546 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.547 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.547 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.547 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.547 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.547 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.547 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.547 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.547 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.547 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.547 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.548 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.548 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.548 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.549 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.549 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.549 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.549 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.549 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.549 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.549 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.549 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.549 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.550 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.550 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.550 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.550 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.550 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.550 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.550 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.550 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.550 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.551 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.551 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.551 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.551 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.551 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.551 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.551 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.551 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.551 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.552 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.552 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.552 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.552 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.552 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.552 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.552 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.552 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.552 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.553 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.553 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.553 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.553 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.553 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.554 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.554 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.554 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.554 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.554 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.554 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.554 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.554 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.554 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.554 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.555 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.555 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.555 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.555 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.555 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.555 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.555 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.555 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.555 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.555 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.556 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.556 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.556 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.556 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.556 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.556 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.556 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.557 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.557 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.557 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.557 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.557 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.557 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.557 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.558 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.558 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.558 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.558 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.558 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.558 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.558 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.558 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.559 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.559 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.559 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.559 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.559 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.560 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.560 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.560 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.560 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.560 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.560 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.560 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.561 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.561 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.561 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.561 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.561 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.561 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.561 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.561 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.561 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.562 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.562 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.562 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.562 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.562 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.562 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.562 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.562 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.562 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.562 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.563 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.564 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.564 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.564 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. !SUBENTRY 5 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.564 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. !SUBENTRY 2 org.eclipse.core.resources 4 273 2015-10-17 13:57:10.564 !MESSAGE Could not delete '/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res'. !STACK 1 org.eclipse.core.runtime.CoreException: Problems encountered while deleting files. at org.eclipse.core.internal.filesystem.local.LocalFile.delete(LocalFile.java:131) at org.eclipse.core.internal.resources.ResourceTree.internalDeleteProject(ResourceTree.java:437) at org.eclipse.core.internal.resources.ResourceTree.standardDeleteProject(ResourceTree.java:837) at org.eclipse.core.internal.resources.Resource.unprotectedDelete(Resource.java:1987) at org.eclipse.core.internal.resources.Resource.delete(Resource.java:803) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res. !SUBENTRY 3 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.566 !MESSAGE Problems encountered while deleting files. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.566 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.566 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.566 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.566 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.567 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.567 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.567 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.567 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.567 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.567 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.567 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.567 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.567 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.567 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.568 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.568 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.568 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.568 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.568 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.569 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.569 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.569 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.569 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.569 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.569 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.569 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.569 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.569 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.570 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.570 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.570 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.570 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.570 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.570 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.570 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.570 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.570 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.570 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.570 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.571 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.571 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.571 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.571 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.571 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.571 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.571 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.571 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.571 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.571 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.572 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.572 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.572 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.572 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.572 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.572 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.572 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.573 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.573 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.573 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.573 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.573 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.574 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.574 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.574 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.574 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.574 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.574 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.574 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.574 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.574 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.575 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.575 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.575 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.575 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.575 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.575 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.575 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.575 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.575 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.576 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.576 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.576 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.576 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.576 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.576 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.576 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.576 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.576 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.577 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.577 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.577 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.577 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.577 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.577 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.577 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.578 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.578 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.578 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.578 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.578 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.578 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.578 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.579 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.579 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.579 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.579 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.579 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.579 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.579 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.579 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.579 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.579 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.580 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.580 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.580 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.580 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.580 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.580 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.580 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.580 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.580 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.580 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.581 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.581 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.581 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.581 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.581 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.581 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.581 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.581 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.581 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.582 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.582 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.582 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.583 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.583 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.583 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.583 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.583 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.583 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.587 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.587 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.587 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.587 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.587 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.587 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.588 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.588 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.588 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.588 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:57:10.588 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res. !SUBENTRY 2 org.eclipse.core.resources 4 273 2015-10-17 13:57:10.588 !MESSAGE Could not delete '/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res'. !ENTRY com.aptana.git.core 4 1 2015-10-17 13:57:17.951 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-17 13:57:17.951 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-17 13:57:17.951 !MESSAGE Failed to acquire lock for git repository. !SUBENTRY 1 com.aptana.git.core 4 0 2015-10-17 13:57:17.951 !MESSAGE Failed to acquire lock for git repository. !ENTRY org.eclipse.ui.ide 4 4 2015-10-17 13:57:20.937 !MESSAGE Problems saving workspace !ENTRY org.eclipse.ui.ide 2 1 2015-10-17 13:57:20.939 !MESSAGE Problems occurred while trying to save the state of the workbench. !SUBENTRY 1 org.eclipse.core.resources 2 234 2015-10-17 13:57:20.939 !MESSAGE The project description file (.project) for 'Problem_Res' was missing. This file contains important information about the project. A new project description file has been created, but some information about the project may have been lost. !ENTRY org.eclipse.core.jobs 2 2 2015-10-17 13:57:31.561 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-17 13:57:52.820 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 13:58:48.462 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 13:58:48.466 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-17 13:58:53.391 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-17 13:58:53.393 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-17 13:58:53.399 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-17 13:58:53.403 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-17 13:58:53.405 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-17 13:58:53.406 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-17 13:58:53.408 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-17 13:58:53.410 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ltk.ui.refactoring 4 10000 2015-10-17 13:58:56.579 !MESSAGE Internal Error !STACK 1 org.eclipse.core.internal.resources.ResourceException: Problems encountered while deleting resources. at org.eclipse.core.internal.resources.Resource.delete(Resource.java:816) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Could not delete '/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res'. org.eclipse.core.runtime.CoreException: Problems encountered while deleting files. at org.eclipse.core.internal.filesystem.local.LocalFile.delete(LocalFile.java:131) at org.eclipse.core.internal.resources.ResourceTree.internalDeleteProject(ResourceTree.java:437) at org.eclipse.core.internal.resources.ResourceTree.standardDeleteProject(ResourceTree.java:837) at org.eclipse.core.internal.resources.Resource.unprotectedDelete(Resource.java:1987) at org.eclipse.core.internal.resources.Resource.delete(Resource.java:803) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res. Contains: Could not delete '/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res'. !SUBENTRY 1 org.eclipse.core.resources 4 273 2015-10-17 13:58:56.582 !MESSAGE Problems encountered while deleting resources. !SUBENTRY 2 org.eclipse.core.resources 4 273 2015-10-17 13:58:56.582 !MESSAGE Could not delete '/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res'. !STACK 1 org.eclipse.core.runtime.CoreException: Problems encountered while deleting files. at org.eclipse.core.internal.filesystem.local.LocalFile.delete(LocalFile.java:131) at org.eclipse.core.internal.resources.ResourceTree.internalDeleteProject(ResourceTree.java:437) at org.eclipse.core.internal.resources.ResourceTree.standardDeleteProject(ResourceTree.java:837) at org.eclipse.core.internal.resources.Resource.unprotectedDelete(Resource.java:1987) at org.eclipse.core.internal.resources.Resource.delete(Resource.java:803) at org.eclipse.core.internal.resources.Project.delete(Project.java:344) at org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange.perform(DeleteResourceChange.java:160) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.CompositeChange.perform(CompositeChange.java:278) at org.eclipse.ltk.core.refactoring.PerformChangeOperation$1.run(PerformChangeOperation.java:258) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.executeChange(PerformChangeOperation.java:306) at org.eclipse.ltk.internal.ui.refactoring.UIPerformChangeOperation.executeChange(UIPerformChangeOperation.java:92) at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run(PerformChangeOperation.java:218) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2313) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. Contains: Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res. !SUBENTRY 3 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.583 !MESSAGE Problems encountered while deleting files. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.583 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/a332e999af70a60b78d167ef199676ec2aa6b5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.583 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00/d9e943538e6703e1b3b1ea89b6a0a6a3ecf6e1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/00. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/50a24806bc0cf30c9173f59d1ae590baa536f5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09/9b78a02a3f71539974e76c469c2a90701eba29. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/09. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a/75f392edfe73083bc08c70d7f0070393cdf0f0. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.584 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0a. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/23c970c649596ef2a3496631abe16cd2d3cfc5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e/d6ee3610599a3331e4a029141645c4c774284c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f/9bbed03ac36a6a4d7c451576d36d5249fde7d5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/0f. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.585 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13/f9e0bdff4557528c7f9f29dc4df74a5813b055. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/13. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19/e67cf916030e8f19326c987aa5935517a0b67c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/19. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e/4fc50ce92c8590d9366bb16004e1dedf96031d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/1e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.586 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20/6cf926925bbb20af726f3dedd318c0638ec81b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.587 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/20. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.587 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f/5d97d0e7b9d517636e9ba1eb39697842a35804. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.587 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/2f. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.587 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31/01f2611ccc1559ec8ffe5768ce8f171029b566. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.587 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/31. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.587 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32/ba8f8dec301553c1dc616d9185407f73bf1770. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.588 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/32. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.588 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36/8ea0617fb296b6a1437c5c9856ed5ad7002dab. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.588 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/36. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.588 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37/b216d55ecf446e8e71a8fc90325288469006e9. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.588 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/37. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.588 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40/4b28cbd8e0fd37e38964872d595c2b084f626e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.589 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/40. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.589 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46/32f6c448eb13197fbad8596083f921d48a2f1a. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.589 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/46. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.589 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e/9d0a2a7987e9a58e86aab90260af0a95bee2cd. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.589 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/4e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.589 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54/e780b96176f215abae84470ac66b1825eae1c5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.589 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/54. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.590 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55/453d5e3fad2d6359c5c54719efd9188c707a51. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.590 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/55. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.590 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56/7b25b5e1773916fe729aeb56755e2a7d0e4e15. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.590 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/56. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.590 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/730dbe9bf2e8830f45037035692873a2cbf1de. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.591 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58/8b74440c9bd9e2dc235cabd8ac99ebeaa39fcc. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.591 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/58. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.591 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59/679369f669e61b621866657a59c9c654209d69. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.591 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/59. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.591 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d/13e0506c4a6317c3d8281f8ea035f27dc7baab. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.591 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.592 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e/2f42617a4cf4b55a45cfb97e1727f09e00dd75. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.592 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/5e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.592 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62/79942ee81aae133b7a372ec371bbec8abc83fa. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.592 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/62. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.592 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69/b0d1612961e099aa4c05858d4b4246650cc7a1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.592 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/69. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.593 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c/dab967c77a3d57da907b8f39a0bf76f0a52e31. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.593 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.593 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d/7001804a498e287264a565877e4830e65970a5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.593 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/6d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.593 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71/76520201d83d56d07020f788cb1ea1c4d7d9e7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.593 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/71. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.594 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73/6cba8f01e093b84a92b3774f50183fd306da8c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.594 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/73. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.594 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77/667fe9079bbb29df44860aec586b0695de578b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.594 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/77. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.594 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79/932174f028b663b165309d3aaaa82018cfee2c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.594 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/79. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.594 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/0729f9f0dc9eff140e457df70cf573c0001f4f. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.595 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/617b7a6ef3af9535fe66f45920a9d884b23d34. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.595 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82/dab37cde792f98b8fa1b2cc8a631540e383f8b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.595 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/82. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.595 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83/c8526634dcc327e68fc83cb95aefffba6da3bb. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.595 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/83. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.595 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86/1e91a836598d7b2213e8d798e96d2250d848b4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.596 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/86. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.596 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87/7e554482e59edcd4ee7f03022b2c71e99beb87. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.596 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/87. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.596 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89/2c53f134235d8fca0c2fcdec6b5c1b196ab3a2. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.597 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/89. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.597 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/4aa67dfd7f3b772f89f757d09b7d2ab4e44f50. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.597 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b/ce34a1bfee020806752b29ed5188fd976d137b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.597 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.597 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d/92bdac79c97a16103e1c11e509177664bf55f0. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.598 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/8d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.598 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90/e18c2963f2c8a31927578908c9d0665ce5216f. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.598 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/90. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.599 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93/e302d0eb0ec2ebba23bf9e4997eba2f56cd2af. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.599 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/93. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.599 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/c5a01b2fbbbd17bf41d82fa2180942bec18d87. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.599 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b/d9b22a09c80edbbf86c926cd01886696aa3b69. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.600 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.600 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c/6e28e992411b8bdc5515174abd6a7e77244f35. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.600 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.600 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/44be66d930fdd5d1083771c59b24c3de97f165. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.600 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d/9fe807d955922bef6a8a02aea873d3db084f05. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.601 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/9d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.601 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5/87d03f9580a112fd1ad979bd0ac01d105827e8. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.601 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.601 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7/19f596876e8cd38d19f5dd7d170e4159f62d73. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.602 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.602 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8/6b37e49c2d6bd44d7de3e26932ac6cfcbe7769. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.602 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/a8. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.602 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac/a298d6330fa83abdb9fe4fc5d77c9b0bc7b6e4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.603 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ac. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.603 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/1290670d812fef6a5864d7422114142a141472. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.603 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae/f7e7cf39314b1a67e623a35c756f69416ede65. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.603 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ae. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.603 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2/808f25e0969cf515ca638100d9407ad4ed79e4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.603 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b2. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.604 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3/de40ffc7ef207024b7850765ad04c268d12418. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.604 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b3. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.604 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/7ddae30a165ee2f41e456dff30f5986012fe9d. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.604 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5/8577d8540e40a0be32c97a8c062bc8eb25c9dd. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.604 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.604 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7/6b3349bd800547e6703b5d3e2974cff1ad0ee1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.604 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.605 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9/db684b7ea69fbc4ee43f64680262c14928ed14. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.605 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/b9. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.605 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb/a585c88efc230e8014a1b119e35ad712899797. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.605 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bb. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.605 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc/bac2d867f6aa7c5238f65639ea8a7bed59ea97. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.605 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/bc. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.605 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be/4c9fd52957b6049c19b622b24a749699239823. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.605 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/be. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.606 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3/051c3e94a89b68899ca1f2a54e72f504df829b. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.606 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c3. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.606 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4/aa95faa9e651f21b23a6bba803324332f762e5. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.606 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.606 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6/8275fbd044b73e797cb26f34ecacd48c600a06. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.606 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c6. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.606 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8/1a34dd259925f5ac66437b5a731826a27f8c0c. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.607 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c8. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.607 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9/99e61fc9b891a7d5acafa5ca23c7d42b3f6b1a. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.607 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/c9. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.607 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/1801f810b183f5378cea584193a4c4fe647a1e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.607 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc/f91082af1a963111c22da616275286fc04736a. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.607 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/cc. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.607 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0/e06532d5c1e60d0722d8579869bdebd80e56a0. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.608 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d0. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.608 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/25ca8bbd689b349b69f7d504268b342a79d4e3. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.608 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2/f86d7c47ae5626ad994daeace4e1e790cb9be3. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.608 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d2. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.608 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6/681a17b009a07033a70873e9b7b654cead8d83. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.608 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d6. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.608 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7/f6cfd0139f3849c71e51d387814f27737aac64. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.609 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/d7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.609 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da/45d329ce53ec21d35d0f13d4949ab8fd5eca99. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.609 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/da. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.609 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/a18eb141497ac592c4386b8934c412e2207fbd. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.609 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc/cb1bcbbc2dc42d5f0d7ab12b66edbb4e7df3b1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.609 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/dc. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.609 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df/3269c61aa17da347c7fd6157c34cbba2049532. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.610 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/df. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.610 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6/c9348f5bcd76245bfcf507bdb53ff3eb765946. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.610 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/e6. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.610 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/4bf361087033a2066bddc85e52c99985b54975. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.610 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed/73036dc83ef6a66348534bcc13c36d93cd7397. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.611 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ed. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.611 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef/2fc0b434db456c91c52ef1f85efc54b6b0a4cf. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.611 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/ef. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.611 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1/8e64249e65ba71e4ca204aa24e35161e2789ad. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.611 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f1. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.611 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/3e43a98796b282ae1134d7afae5fa305a53020. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.611 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/a707a02773e20bdb404c5c3d02967d8417a369. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.612 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4/f383ddb7e331b35f3cd731f72057a03e9c8539. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.612 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f4. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.612 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2bcedf301460fdb5f9571929dcbcf69889ea81. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.612 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9/2ec3db8fc14f3dc820162c8f6d65c80ea99e32. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.612 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/f9. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.612 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb/879623d0723926a7fbdc31beb3d9ec260cf6de. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.612 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fb. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.612 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/6be53b9677bece26c3031946ca1995d039857e. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.613 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd/cc7753a9fbbc18c9e157f7632ebff1b5337ad7. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.613 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fd. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.613 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe/58a56540a254afaf2716b9364c0f6906872b26. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.613 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/fe. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.613 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.idx. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.613 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack/pack-a9e53a4f2940552d1238a6dc692ade1273c66a96.pack. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.613 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects/pack. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.613 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git/objects. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.614 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res/.git. !SUBENTRY 4 org.eclipse.core.filesystem 4 273 2015-10-17 13:58:56.614 !MESSAGE Could not delete: /Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res. !SUBENTRY 2 org.eclipse.core.resources 4 273 2015-10-17 13:58:56.614 !MESSAGE Could not delete '/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res'. !ENTRY com.aptana.git.core 4 1 2015-10-17 13:59:12.533 !MESSAGE Errors occurred while refreshing git index !SUBENTRY 1 com.aptana.core 4 0 2015-10-17 13:59:12.533 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=2, No such file or directory !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=2, No such file or directory at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1030) at com.aptana.git.core.model.GitIndex$UntrackedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=2, No such file or directory at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-17 13:59:12.534 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=2, No such file or directory !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=2, No such file or directory at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:954) at com.aptana.git.core.model.GitIndex$StagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=2, No such file or directory at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !SUBENTRY 1 com.aptana.core 4 0 2015-10-17 13:59:12.535 !MESSAGE Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=2, No such file or directory !STACK 0 java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/Users/James/Documents/Appcelerator_Studio_Workspace_newproject/Problem_Res"): error=2, No such file or directory at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041) at com.aptana.core.util.ProcessRunner.startProcess(ProcessRunner.java:165) at com.aptana.core.util.ProcessRunner.doRun(ProcessRunner.java:146) at com.aptana.core.util.ProcessRunner.run(ProcessRunner.java:85) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:279) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:254) at com.aptana.core.util.ProcessRunner.runInBackground(ProcessRunner.java:248) at com.aptana.git.core.model.GitExecutable.runInBackground(GitExecutable.java:363) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1588) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1546) at com.aptana.git.core.model.GitRepository.execute(GitRepository.java:1541) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:995) at com.aptana.git.core.model.GitIndex$UnstagedFilesRefreshJob.call(GitIndex.java:1) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744) Caused by: java.io.IOException: error=2, No such file or directory at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022) ... 16 more !ENTRY org.eclipse.ui 4 0 2015-10-17 14:03:04.334 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.IllegalArgumentException: Argument not valid) at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:139) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3994) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3671) at org.eclipse.jface.window.Window.runEventLoop(Window.java:832) at org.eclipse.jface.window.Window.open(Window.java:808) at com.appcelerator.titanium.ios.internal.ui.launching.packaging.PackageHandler.execute(PackageHandler.java:49) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:294) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:90) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:247) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:229) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:132) at org.eclipse.e4.core.commands.internal.HandlerServiceHandler.execute(HandlerServiceHandler.java:149) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:499) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:210) at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.executeItem(HandledContributionItem.java:825) at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.handleWidgetSelection(HandledContributionItem.java:701) at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.access$6(HandledContributionItem.java:685) at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem$4.handleEvent(HandledContributionItem.java:613) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) Caused by: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:4422) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkParent(Widget.java:511) at org.eclipse.swt.widgets.Widget.(Widget.java:132) at org.eclipse.swt.widgets.Control.(Control.java:116) at org.eclipse.swt.widgets.Scrollable.(Scrollable.java:73) at org.eclipse.swt.widgets.Composite.(Composite.java:91) at org.eclipse.ui.forms.widgets.LayoutComposite.(LayoutComposite.java:24) at org.eclipse.ui.forms.widgets.FormToolkit.createComposite(FormToolkit.java:311) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.createSectionContents(Titanium360TiappContributor.java:555) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor.access$7(Titanium360TiappContributor.java:542) at com.appcelerator.titanium360.ui.tiapp.Titanium360TiappContributor$2$1.run(Titanium360TiappContributor.java:492) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) ... 52 more !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:21:51.398 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:21:51.399 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:26:08.582 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:26:08.583 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:26:47.065 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:26:47.066 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:28:01.226 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:28:01.227 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:30:04.112 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:30:04.114 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:31:01.874 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:31:01.875 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:32:21.745 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:32:21.745 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:33:31.216 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:33:31.217 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:35:44.888 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:35:44.889 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:36:27.646 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:36:27.647 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:37:43.942 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:37:43.943 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:38:19.672 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:38:19.673 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:39:24.994 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:39:24.995 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:40:59.459 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:40:59.460 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:41:53.893 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:41:53.894 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:42:48.460 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:42:48.461 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:44:09.193 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:44:09.194 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:45:36.489 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:45:36.490 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:47:22.625 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:47:22.626 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:48:13.342 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:48:13.343 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:49:17.178 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:49:17.179 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:53:22.037 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:53:22.039 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:53:48.640 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:53:48.641 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:58:42.403 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:58:42.405 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:59:22.824 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-17 14:59:22.824 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-17 14:59:42.662 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-18 13:40:43.315 ----------------------------------------------- eclipse.buildId=unknown java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.core 4 0 2015-10-18 13:40:52.818 !MESSAGE (Build 4.3.1.1442888904) [ERROR] null !STACK 0 java.lang.InterruptedException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at java.lang.UNIXProcess.waitFor(UNIXProcess.java:210) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:381) at com.aptana.core.util.ProcessRunner.processData(ProcessRunner.java:345) at com.aptana.core.util.ProcessRunner.processResult(ProcessRunner.java:432) at com.appcelerator.titanium.core.internal.cli.NodeAppcCLI.runCommand(NodeAppcCLI.java:239) at com.appcelerator.titanium.rcp.handlers.TitaniumSplashHandler$3.run(TitaniumSplashHandler.java:293) !ENTRY com.appcelerator.titanium.rcp 4 0 2015-10-18 13:40:52.822 !MESSAGE (Build 4.3.1.1442888904) [ERROR] Failed to check login status. Likely not logged in. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 13:41:30.246 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 13:41:30.251 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-18 13:41:33.207 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-18 13:41:33.210 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-18 13:41:33.214 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-18 13:41:33.216 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-18 13:41:33.218 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-18 13:41:33.220 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-18 13:41:33.241 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-18 13:41:33.244 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-10-18 13:44:05.609 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 13:46:11.589 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 13:46:11.590 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-18 13:51:49.838 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 13:52:55.077 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 13:52:55.081 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.aptana.git.core 4 0 2015-10-18 13:52:56.064 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Errors occurred while grabbing changed file listings !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 13:58:12.551 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 13:58:12.553 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 14:04:21.015 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 14:04:21.017 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 14:05:18.910 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 14:05:18.911 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-18 18:35:10.884 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 18:35:33.262 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 18:35:33.268 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-18 18:35:44.250 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-18 18:35:44.252 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-18 18:35:44.256 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-18 18:35:44.258 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-18 18:35:44.259 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-18 18:35:44.273 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-18 18:35:44.275 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-18 18:35:44.276 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 18:37:56.975 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 18:37:56.978 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-18 18:41:14.986 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 18:41:39.165 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 18:41:39.170 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui.navigator 4 2 2015-10-18 18:41:46.211 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.navigator". !STACK 0 java.lang.NullPointerException at org.eclipse.ui.navigator.resources.ResourceDropAdapterAssistant.getActualTarget(ResourceDropAdapterAssistant.java:343) at org.eclipse.ui.navigator.resources.ResourceDropAdapterAssistant.performResourceMove(ResourceDropAdapterAssistant.java:467) at org.eclipse.ui.navigator.resources.ResourceDropAdapterAssistant.handleDrop(ResourceDropAdapterAssistant.java:246) at com.appcelerator.titanium.ui.ide.navigator.ProjectExplorerDropAdapterAssistant.handleDrop(ProjectExplorerDropAdapterAssistant.java:49) at org.eclipse.ui.navigator.CommonDropAdapter$1.run(CommonDropAdapter.java:194) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.navigator.CommonDropAdapter.performDrop(CommonDropAdapter.java:184) at org.eclipse.jface.viewers.ViewerDropAdapter.drop(ViewerDropAdapter.java:254) at org.eclipse.ui.part.PluginDropAdapter.drop(PluginDropAdapter.java:70) at org.eclipse.swt.dnd.DNDListener.handleEvent(DNDListener.java:91) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.dnd.DropTarget.drop(DropTarget.java:728) at org.eclipse.swt.dnd.DropTarget.outlineView_acceptDrop_item_childIndex(DropTarget.java:746) at org.eclipse.swt.dnd.DropTarget.dropTargetProc(DropTarget.java:471) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.dnd.DropTarget.dndCallSuper(DropTarget.java:210) at org.eclipse.swt.dnd.DropTarget.performDragOperation(DropTarget.java:739) at org.eclipse.swt.dnd.DropTarget.dropTargetProc(DropTarget.java:456) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.mouseDownSuper(Widget.java:1101) at org.eclipse.swt.widgets.Tree.mouseDownSuper(Tree.java:2064) at org.eclipse.swt.widgets.Widget.mouseDown(Widget.java:1093) at org.eclipse.swt.widgets.Control.mouseDown(Control.java:2563) at org.eclipse.swt.widgets.Tree.mouseDown(Tree.java:2032) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5638) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2105) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2329) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5702) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:5139) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5288) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3666) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui.navigator 4 0 2015-10-18 18:41:46.318 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.ui.navigator.resources.ResourceDropAdapterAssistant.getActualTarget(ResourceDropAdapterAssistant.java:343) at org.eclipse.ui.navigator.resources.ResourceDropAdapterAssistant.performResourceMove(ResourceDropAdapterAssistant.java:467) at org.eclipse.ui.navigator.resources.ResourceDropAdapterAssistant.handleDrop(ResourceDropAdapterAssistant.java:246) at com.appcelerator.titanium.ui.ide.navigator.ProjectExplorerDropAdapterAssistant.handleDrop(ProjectExplorerDropAdapterAssistant.java:49) at org.eclipse.ui.navigator.CommonDropAdapter$1.run(CommonDropAdapter.java:194) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.navigator.CommonDropAdapter.performDrop(CommonDropAdapter.java:184) at org.eclipse.jface.viewers.ViewerDropAdapter.drop(ViewerDropAdapter.java:254) at org.eclipse.ui.part.PluginDropAdapter.drop(PluginDropAdapter.java:70) at org.eclipse.swt.dnd.DNDListener.handleEvent(DNDListener.java:91) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.dnd.DropTarget.drop(DropTarget.java:728) at org.eclipse.swt.dnd.DropTarget.outlineView_acceptDrop_item_childIndex(DropTarget.java:746) at org.eclipse.swt.dnd.DropTarget.dropTargetProc(DropTarget.java:471) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.dnd.DropTarget.dndCallSuper(DropTarget.java:210) at org.eclipse.swt.dnd.DropTarget.performDragOperation(DropTarget.java:739) at org.eclipse.swt.dnd.DropTarget.dropTargetProc(DropTarget.java:456) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.mouseDownSuper(Widget.java:1101) at org.eclipse.swt.widgets.Tree.mouseDownSuper(Tree.java:2064) at org.eclipse.swt.widgets.Widget.mouseDown(Widget.java:1093) at org.eclipse.swt.widgets.Control.mouseDown(Control.java:2563) at org.eclipse.swt.widgets.Tree.mouseDown(Tree.java:2032) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5638) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2105) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2329) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5702) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:5139) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5288) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3666) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-18 18:41:46.809 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-18 18:41:46.811 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-18 18:41:46.813 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-18 18:41:46.814 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-18 18:41:46.815 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-18 18:41:46.841 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-18 18:41:46.842 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-18 18:41:46.843 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-10-18 18:42:10.343 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.jobs 4 2 2015-10-18 18:42:28.711 !MESSAGE An internal error occurred during: "Update Android info". !STACK 0 java.lang.NullPointerException at com.appcelerator.titanium.android.core.AndroidSDKLocator.getLaunchShortcutManager(AndroidSDKLocator.java:437) at com.appcelerator.titanium.android.core.AndroidSDKLocator.parseTiInfo(AndroidSDKLocator.java:309) at com.appcelerator.titanium.android.core.AndroidSDKLocator.updateTiInfo(AndroidSDKLocator.java:225) at com.appcelerator.titanium.android.core.AndroidSDKLocator.access$0(AndroidSDKLocator.java:222) at com.appcelerator.titanium.android.core.AndroidSDKLocator$1.run(AndroidSDKLocator.java:242) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 2 2 2015-10-18 18:42:30.613 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !SESSION 2015-10-18 19:23:31.158 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:24:01.172 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:24:01.178 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-18 19:24:12.938 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-18 19:24:39.695 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-18 19:24:42.164 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SESSION 2015-10-18 19:29:01.749 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:29:24.365 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:29:24.369 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-18 19:29:26.054 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-18 19:29:26.057 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-18 19:29:26.059 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-18 19:29:26.061 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-18 19:29:26.062 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-18 19:29:26.064 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-18 19:29:26.082 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-18 19:29:26.084 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.ui 4 0 2015-10-18 19:30:20.554 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-18 19:30:29.735 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.core.jobs 2 2 2015-10-18 19:31:01.181 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-10-18 19:31:01.181 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !SESSION 2015-10-18 19:31:08.767 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:31:29.737 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:31:29.738 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.core.jobs 2 2 2015-10-18 19:32:30.313 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !ENTRY org.eclipse.core.jobs 2 2 2015-10-18 19:32:30.314 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !SESSION 2015-10-18 19:32:36.294 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:32:54.907 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:32:54.911 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-18 19:38:04.000 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:38:40.153 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:38:40.158 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-18 19:38:51.202 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-18 19:38:51.214 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-18 19:38:51.218 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-18 19:38:51.219 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-18 19:38:51.221 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-18 19:38:51.223 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-18 19:38:51.225 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-18 19:38:51.227 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.search 4 0 2015-10-18 19:40:39.795 !MESSAGE Problems encountered during text search. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 19:40:39.795 !MESSAGE File 'AlumniConnect/app/controllers/clubs_window.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 19:40:39.796 !MESSAGE Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window.js'. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 19:40:39.796 !MESSAGE File '865App/app/alloy.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/865App/app/alloy.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/865App/app/alloy.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 19:40:39.796 !MESSAGE Resource is out of sync with the file system: '/865App/app/alloy.js'. !ENTRY org.eclipse.search 4 0 2015-10-18 19:40:48.330 !MESSAGE Problems encountered during text search. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 19:40:48.330 !MESSAGE File 'AlumniConnect/app/controllers/clubs_window.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 19:40:48.331 !MESSAGE Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window.js'. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 19:40:48.331 !MESSAGE File '865App/app/alloy.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/865App/app/alloy.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/865App/app/alloy.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 19:40:48.331 !MESSAGE Resource is out of sync with the file system: '/865App/app/alloy.js'. !SESSION 2015-10-18 19:44:14.992 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:44:32.791 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:44:32.796 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-18 19:44:44.282 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-18 19:44:44.301 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-18 19:44:44.305 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-18 19:44:44.307 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-18 19:44:44.309 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-18 19:44:44.310 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-18 19:44:44.313 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-18 19:44:44.314 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:47:05.099 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 19:47:05.100 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-18 20:03:59.445 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:04:43.871 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:04:43.876 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-18 20:04:55.101 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-18 20:04:55.117 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-18 20:04:55.121 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-18 20:04:55.122 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-18 20:04:55.123 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-18 20:04:55.167 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-18 20:04:55.168 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-18 20:04:55.170 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.search 4 0 2015-10-18 20:05:19.889 !MESSAGE Problems encountered during text search. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 20:05:19.890 !MESSAGE File 'AlumniConnect/app/controllers/clubs_window_detailed.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 20:05:19.891 !MESSAGE Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 20:05:19.891 !MESSAGE File '865App/app/alloy.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/865App/app/alloy.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/865App/app/alloy.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 20:05:19.891 !MESSAGE Resource is out of sync with the file system: '/865App/app/alloy.js'. !ENTRY org.eclipse.search 4 0 2015-10-18 20:05:34.572 !MESSAGE Problems encountered during text search. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 20:05:34.572 !MESSAGE File 'AlumniConnect/app/controllers/clubs_window_detailed.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 20:05:34.572 !MESSAGE Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 20:05:34.572 !MESSAGE File '865App/app/alloy.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/865App/app/alloy.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/865App/app/alloy.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 20:05:34.572 !MESSAGE Resource is out of sync with the file system: '/865App/app/alloy.js'. !ENTRY org.eclipse.search 4 0 2015-10-18 20:05:50.267 !MESSAGE Problems encountered during text search. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 20:05:50.267 !MESSAGE File 'AlumniConnect/app/controllers/clubs_window_detailed.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 20:05:50.268 !MESSAGE Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 20:05:50.268 !MESSAGE File '865App/app/alloy.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/865App/app/alloy.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/865App/app/alloy.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 20:05:50.268 !MESSAGE Resource is out of sync with the file system: '/865App/app/alloy.js'. !ENTRY org.eclipse.core.jobs 2 2 2015-10-18 20:06:18.984 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.decorators.DecorationScheduler$1 !ENTRY org.eclipse.core.jobs 2 2 2015-10-18 20:06:18.984 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-18 20:07:03.244 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.samples 4 0 2015-10-18 20:07:25.249 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-18 20:07:25.250 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-18 20:07:25.254 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-18 20:07:25.256 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-18 20:07:25.258 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-18 20:07:25.261 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-18 20:07:25.263 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-18 20:07:25.265 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:07:25.808 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:07:25.809 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.search 4 0 2015-10-18 20:07:37.202 !MESSAGE Problems encountered during text search. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 20:07:37.202 !MESSAGE File 'AlumniConnect/app/controllers/clubs_window_detailed.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 20:07:37.204 !MESSAGE Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 20:07:37.204 !MESSAGE File '865App/app/alloy.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/865App/app/alloy.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/865App/app/alloy.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 20:07:37.204 !MESSAGE Resource is out of sync with the file system: '/865App/app/alloy.js'. !ENTRY org.eclipse.search 4 0 2015-10-18 20:07:45.484 !MESSAGE Problems encountered during text search. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 20:07:45.484 !MESSAGE File 'AlumniConnect/app/controllers/clubs_window_detailed.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 20:07:45.484 !MESSAGE Resource is out of sync with the file system: '/AlumniConnect/app/controllers/clubs_window_detailed.js'. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 20:07:45.484 !MESSAGE File '865App/app/alloy.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/865App/app/alloy.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/865App/app/alloy.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 20:07:45.484 !MESSAGE Resource is out of sync with the file system: '/865App/app/alloy.js'. !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:08:49.109 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:08:49.111 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-18 20:09:20.388 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:09:51.048 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:09:51.050 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-18 20:09:54.199 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-18 20:09:54.221 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-18 20:09:54.226 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-18 20:09:54.228 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-18 20:09:54.230 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-18 20:09:54.233 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-18 20:09:54.235 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-18 20:09:54.270 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY org.eclipse.e4.ui.workbench 4 0 2015-10-18 20:09:55.269 !MESSAGE Error setting focus to : org.eclipse.e4.ui.model.application.ui.basic.impl.PartImpl clubs_window_detailed.js !STACK 0 org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:4441) at org.eclipse.swt.SWT.error(SWT.java:4356) at org.eclipse.swt.SWT.error(SWT.java:4327) at org.eclipse.swt.widgets.Widget.error(Widget.java:783) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:573) at org.eclipse.swt.widgets.Control.setFocus(Control.java:3745) at org.eclipse.swt.widgets.Composite.setFocus(Composite.java:1037) at org.eclipse.swt.widgets.Composite.setFocus(Composite.java:1037) at org.eclipse.ui.texteditor.StatusTextEditor.setFocus(StatusTextEditor.java:120) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.delegateSetFocus(CompatibilityPart.java:191) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:247) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:253) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:225) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:107) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.focusGui(PartRenderingEngine.java:795) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer$2.setFocus(ContributedPartRenderer.java:100) at org.eclipse.swt.custom.CTabItem.setFocus(CTabItem.java:332) at org.eclipse.swt.custom.CTabFolder.setFocus(CTabFolder.java:2555) at org.eclipse.swt.widgets.Control.fixFocus(Control.java:1351) at org.eclipse.swt.widgets.Control.setVisible(Control.java:4275) at org.eclipse.swt.widgets.ToolBar.setVisible(ToolBar.java:742) at org.eclipse.swt.custom.CTabFolder.setItemSize(CTabFolder.java:2724) at org.eclipse.swt.custom.CTabFolder.updateItems(CTabFolder.java:3703) at org.eclipse.swt.custom.CTabFolder.updateItems(CTabFolder.java:3640) at org.eclipse.swt.custom.CTabFolder.onResize(CTabFolder.java:2034) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:290) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1471) at org.eclipse.swt.widgets.Control.resized(Control.java:3296) at org.eclipse.swt.widgets.Composite.resized(Composite.java:937) at org.eclipse.swt.widgets.Control.setFrameSize(Control.java:3838) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5630) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSView.setFrameSize(NSView.java:283) at org.eclipse.swt.widgets.Control.setBounds(Control.java:3578) at org.eclipse.swt.widgets.Control.setSize(Control.java:4121) at org.eclipse.swt.widgets.Control.pack(Control.java:2713) at org.eclipse.swt.widgets.Control.pack(Control.java:2687) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.adjustTopRight(StackRenderer.java:786) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.showTab(StackRenderer.java:1263) at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer$1.handleEvent(LazyStackRenderer.java:69) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:187) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:156) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4732) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:218) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$10.widgetSelected(StackRenderer.java:1031) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3110) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1794) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:283) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4199) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1467) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1490) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1475) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1279) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4042) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.search 4 0 2015-10-18 20:10:09.148 !MESSAGE Problems encountered during text search. !SUBENTRY 1 org.eclipse.search 4 4 2015-10-18 20:10:09.148 !MESSAGE File '865App/app/alloy.js' has been skipped, problem while reading: ('Resource is out of sync with the file system: '/865App/app/alloy.js'.'). !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/865App/app/alloy.js'. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceManager.java:793) at org.eclipse.core.internal.resources.File.getContents(File.java:290) at org.eclipse.core.internal.resources.File.getContents(File.java:279) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.getInputStream(FileCharSequenceProvider.java:283) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.initializeReader(FileCharSequenceProvider.java:277) at org.eclipse.search.internal.core.text.FileCharSequenceProvider$FileCharSequence.reset(FileCharSequenceProvider.java:269) at org.eclipse.search.internal.core.text.FileCharSequenceProvider.newCharSequence(FileCharSequenceProvider.java:40) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFile(TextSearchVisitor.java:260) at org.eclipse.search.internal.core.text.TextSearchVisitor.processFiles(TextSearchVisitor.java:196) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:172) at org.eclipse.search.internal.core.text.TextSearchVisitor.search(TextSearchVisitor.java:184) at org.eclipse.search.core.text.TextSearchEngine$1.search(TextSearchEngine.java:56) at org.eclipse.search.internal.ui.text.FileSearchQuery.run(FileSearchQuery.java:190) at org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !SUBENTRY 2 org.eclipse.core.resources 4 274 2015-10-18 20:10:09.149 !MESSAGE Resource is out of sync with the file system: '/865App/app/alloy.js'. !ENTRY org.eclipse.core.jobs 2 2 2015-10-18 20:15:09.293 !MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: com.aptana.git.core.model.GitIndexRefreshJob !SESSION 2015-10-18 20:29:38.243 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY org.eclipse.core.jobs 4 2 2015-10-18 20:30:06.498 !MESSAGE An internal error occurred during: "Loading bundle: /Applications/Appcelerator Studio/configuration/org.eclipse.osgi/114/0/.cp/bundles/html.ruble". !STACK 0 java.lang.ClassFormatError: Unknown constant tag 116 in class file org/jruby/internal/runtime/GlobalVariables at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at org.eclipse.osgi.internal.loader.ModuleClassLoader.defineClass(ModuleClassLoader.java:272) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.defineClass(ClasspathManager.java:632) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findClassImpl(ClasspathManager.java:588) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClassImpl(ClasspathManager.java:540) at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:527) at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324) at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320) at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:395) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337) at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.jruby.Ruby.(Ruby.java:4034) at org.jruby.Ruby.newInstance(Ruby.java:185) at org.jruby.embed.internal.SingletonLocalContextProvider.getRuntime(SingletonLocalContextProvider.java:95) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.runParser(EmbedRubyRuntimeAdapterImpl.java:166) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.parse(EmbedRubyRuntimeAdapterImpl.java:93) at org.jruby.embed.ScriptingContainer.parse(ScriptingContainer.java:1163) at org.jruby.embed.ScriptingContainer.runScriptlet(ScriptingContainer.java:1223) at com.aptana.scripting.ScriptingEngine.getInitializedScriptingContainer(ScriptingEngine.java:292) at com.aptana.scripting.model.ScriptLoadJob.run(ScriptLoadJob.java:76) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:144) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:180) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:274) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:243) at com.aptana.scripting.model.BundleManager.loadScript(BundleManager.java:2032) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:129) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-10-18 20:30:06.500 !MESSAGE An internal error occurred during: "Loading bundle: /Applications/Appcelerator Studio/configuration/org.eclipse.osgi/114/0/.cp/bundles/shell-script.ruble". !STACK 0 java.lang.ClassFormatError: org/jruby/internal/runtime/GlobalVariables at org.jruby.Ruby.(Ruby.java:4034) at org.jruby.Ruby.newInstance(Ruby.java:185) at org.jruby.embed.internal.SingletonLocalContextProvider.getRuntime(SingletonLocalContextProvider.java:95) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.runParser(EmbedRubyRuntimeAdapterImpl.java:166) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.parse(EmbedRubyRuntimeAdapterImpl.java:93) at org.jruby.embed.ScriptingContainer.parse(ScriptingContainer.java:1163) at org.jruby.embed.ScriptingContainer.runScriptlet(ScriptingContainer.java:1223) at com.aptana.scripting.ScriptingEngine.getInitializedScriptingContainer(ScriptingEngine.java:292) at com.aptana.scripting.model.ScriptLoadJob.run(ScriptLoadJob.java:76) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:144) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:180) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:274) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:243) at com.aptana.scripting.model.BundleManager.loadScript(BundleManager.java:2032) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:129) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-10-18 20:30:06.500 !MESSAGE An internal error occurred during: "Loading bundle: /Applications/Appcelerator Studio/configuration/org.eclipse.osgi/114/0/.cp/bundles/json.ruble". !STACK 0 java.lang.ClassFormatError: org/jruby/internal/runtime/GlobalVariables at org.jruby.Ruby.(Ruby.java:4034) at org.jruby.Ruby.newInstance(Ruby.java:185) at org.jruby.embed.internal.SingletonLocalContextProvider.getRuntime(SingletonLocalContextProvider.java:95) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.runParser(EmbedRubyRuntimeAdapterImpl.java:166) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.parse(EmbedRubyRuntimeAdapterImpl.java:93) at org.jruby.embed.ScriptingContainer.parse(ScriptingContainer.java:1163) at org.jruby.embed.ScriptingContainer.runScriptlet(ScriptingContainer.java:1223) at com.aptana.scripting.ScriptingEngine.getInitializedScriptingContainer(ScriptingEngine.java:292) at com.aptana.scripting.model.ScriptLoadJob.run(ScriptLoadJob.java:76) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:144) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:180) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:274) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:243) at com.aptana.scripting.model.BundleManager.loadScript(BundleManager.java:2032) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:129) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-10-18 20:30:06.501 !MESSAGE An internal error occurred during: "Loading bundle: /Applications/Appcelerator Studio/configuration/org.eclipse.osgi/114/0/.cp/bundles/source.ruble". !STACK 0 java.lang.ClassFormatError: org/jruby/internal/runtime/GlobalVariables at org.jruby.Ruby.(Ruby.java:4034) at org.jruby.Ruby.newInstance(Ruby.java:185) at org.jruby.embed.internal.SingletonLocalContextProvider.getRuntime(SingletonLocalContextProvider.java:95) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.runParser(EmbedRubyRuntimeAdapterImpl.java:166) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.parse(EmbedRubyRuntimeAdapterImpl.java:93) at org.jruby.embed.ScriptingContainer.parse(ScriptingContainer.java:1163) at org.jruby.embed.ScriptingContainer.runScriptlet(ScriptingContainer.java:1223) at com.aptana.scripting.ScriptingEngine.getInitializedScriptingContainer(ScriptingEngine.java:292) at com.aptana.scripting.model.ScriptLoadJob.run(ScriptLoadJob.java:76) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:144) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:180) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:274) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:243) at com.aptana.scripting.model.BundleManager.loadScript(BundleManager.java:2032) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:129) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-10-18 20:30:06.501 !MESSAGE An internal error occurred during: "Loading bundle: /Applications/Appcelerator Studio/configuration/org.eclipse.osgi/114/0/.cp/bundles/xml.ruble". !STACK 0 java.lang.ClassFormatError: org/jruby/internal/runtime/GlobalVariables at org.jruby.Ruby.(Ruby.java:4034) at org.jruby.Ruby.newInstance(Ruby.java:185) at org.jruby.embed.internal.SingletonLocalContextProvider.getRuntime(SingletonLocalContextProvider.java:95) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.runParser(EmbedRubyRuntimeAdapterImpl.java:166) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.parse(EmbedRubyRuntimeAdapterImpl.java:93) at org.jruby.embed.ScriptingContainer.parse(ScriptingContainer.java:1163) at org.jruby.embed.ScriptingContainer.runScriptlet(ScriptingContainer.java:1223) at com.aptana.scripting.ScriptingEngine.getInitializedScriptingContainer(ScriptingEngine.java:292) at com.aptana.scripting.model.ScriptLoadJob.run(ScriptLoadJob.java:76) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:144) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:180) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:274) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:243) at com.aptana.scripting.model.BundleManager.loadScript(BundleManager.java:2032) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:129) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-10-18 20:30:06.502 !MESSAGE An internal error occurred during: "Loading bundle: /Applications/Appcelerator Studio/configuration/org.eclipse.osgi/114/0/.cp/bundles/js.ruble". !STACK 0 java.lang.ClassFormatError: org/jruby/internal/runtime/GlobalVariables at org.jruby.Ruby.(Ruby.java:4034) at org.jruby.Ruby.newInstance(Ruby.java:185) at org.jruby.embed.internal.SingletonLocalContextProvider.getRuntime(SingletonLocalContextProvider.java:95) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.runParser(EmbedRubyRuntimeAdapterImpl.java:166) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.parse(EmbedRubyRuntimeAdapterImpl.java:93) at org.jruby.embed.ScriptingContainer.parse(ScriptingContainer.java:1163) at org.jruby.embed.ScriptingContainer.runScriptlet(ScriptingContainer.java:1223) at com.aptana.scripting.ScriptingEngine.getInitializedScriptingContainer(ScriptingEngine.java:292) at com.aptana.scripting.model.ScriptLoadJob.run(ScriptLoadJob.java:76) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:144) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:180) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:274) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:243) at com.aptana.scripting.model.BundleManager.loadScript(BundleManager.java:2032) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:129) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-10-18 20:30:06.502 !MESSAGE An internal error occurred during: "Loading bundle: /Applications/Appcelerator Studio/configuration/org.eclipse.osgi/114/0/.cp/bundles/css.ruble". !STACK 0 java.lang.ClassFormatError: org/jruby/internal/runtime/GlobalVariables at org.jruby.Ruby.(Ruby.java:4034) at org.jruby.Ruby.newInstance(Ruby.java:185) at org.jruby.embed.internal.SingletonLocalContextProvider.getRuntime(SingletonLocalContextProvider.java:95) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.runParser(EmbedRubyRuntimeAdapterImpl.java:166) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.parse(EmbedRubyRuntimeAdapterImpl.java:93) at org.jruby.embed.ScriptingContainer.parse(ScriptingContainer.java:1163) at org.jruby.embed.ScriptingContainer.runScriptlet(ScriptingContainer.java:1223) at com.aptana.scripting.ScriptingEngine.getInitializedScriptingContainer(ScriptingEngine.java:292) at com.aptana.scripting.model.ScriptLoadJob.run(ScriptLoadJob.java:76) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:144) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:180) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:274) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:243) at com.aptana.scripting.model.BundleManager.loadScript(BundleManager.java:2032) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:129) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-10-18 20:30:06.503 !MESSAGE An internal error occurred during: "Loading bundle: /Applications/Appcelerator Studio/configuration/org.eclipse.osgi/114/0/.cp/bundles/bundle-development.ruble". !STACK 0 java.lang.ClassFormatError: org/jruby/internal/runtime/GlobalVariables at org.jruby.Ruby.(Ruby.java:4034) at org.jruby.Ruby.newInstance(Ruby.java:185) at org.jruby.embed.internal.SingletonLocalContextProvider.getRuntime(SingletonLocalContextProvider.java:95) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.runParser(EmbedRubyRuntimeAdapterImpl.java:166) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.parse(EmbedRubyRuntimeAdapterImpl.java:93) at org.jruby.embed.ScriptingContainer.parse(ScriptingContainer.java:1163) at org.jruby.embed.ScriptingContainer.runScriptlet(ScriptingContainer.java:1223) at com.aptana.scripting.ScriptingEngine.getInitializedScriptingContainer(ScriptingEngine.java:292) at com.aptana.scripting.model.ScriptLoadJob.run(ScriptLoadJob.java:76) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:144) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:180) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:274) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:243) at com.aptana.scripting.model.BundleManager.loadScript(BundleManager.java:2032) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:129) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.aptana.scripting 4 0 2015-10-18 20:30:06.571 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Failed to load bundle /Applications/Appcelerator Studio/plugins/com.appcelerator.titanium.core_3.1.2.1442811112/bundles/titanium_mobile.ruble !STACK 0 Can't construct a java object for !ruby/object:Ruble::Bundle; exception=Invalid tag: !ruby/object:Ruble::Bundle in "", line 1, column 5: --- !ruby/object:Ruble::Bundle ^ at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:325) at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:181) at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:140) at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:126) at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:296) at org.yaml.snakeyaml.Yaml.load(Yaml.java:290) at com.aptana.scripting.model.BundleCacher.load(BundleCacher.java:328) at com.aptana.scripting.model.BundleCacher.load(BundleCacher.java:286) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:110) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) Caused by: org.yaml.snakeyaml.error.YAMLException: Invalid tag: !ruby/object:Ruble::Bundle at org.yaml.snakeyaml.nodes.Tag.getClassName(Tag.java:108) at org.yaml.snakeyaml.constructor.Constructor.getClassForNode(Constructor.java:620) at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.getConstructor(Constructor.java:313) at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:323) ... 9 more !ENTRY org.eclipse.core.jobs 4 2 2015-10-18 20:30:06.572 !MESSAGE An internal error occurred during: "Loading bundle: /Applications/Appcelerator Studio/plugins/com.appcelerator.titanium.core_3.1.2.1442811112/bundles/titanium_mobile.ruble". !STACK 0 java.lang.ClassFormatError: org/jruby/internal/runtime/GlobalVariables at org.jruby.Ruby.(Ruby.java:4034) at org.jruby.Ruby.newInstance(Ruby.java:185) at org.jruby.embed.internal.SingletonLocalContextProvider.getRuntime(SingletonLocalContextProvider.java:95) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.runParser(EmbedRubyRuntimeAdapterImpl.java:166) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.parse(EmbedRubyRuntimeAdapterImpl.java:93) at org.jruby.embed.ScriptingContainer.parse(ScriptingContainer.java:1163) at org.jruby.embed.ScriptingContainer.runScriptlet(ScriptingContainer.java:1223) at com.aptana.scripting.ScriptingEngine.getInitializedScriptingContainer(ScriptingEngine.java:292) at com.aptana.scripting.model.ScriptLoadJob.run(ScriptLoadJob.java:76) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:144) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:180) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:274) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:243) at com.aptana.scripting.model.BundleManager.loadScript(BundleManager.java:2032) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:129) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY org.eclipse.core.jobs 4 2 2015-10-18 20:30:06.574 !MESSAGE An internal error occurred during: "Loading bundle: /Applications/Appcelerator Studio/configuration/org.eclipse.osgi/114/0/.cp/bundles/text.ruble". !STACK 0 java.lang.ClassFormatError: org/jruby/internal/runtime/GlobalVariables at org.jruby.Ruby.(Ruby.java:4034) at org.jruby.Ruby.newInstance(Ruby.java:185) at org.jruby.embed.internal.SingletonLocalContextProvider.getRuntime(SingletonLocalContextProvider.java:95) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.runParser(EmbedRubyRuntimeAdapterImpl.java:166) at org.jruby.embed.internal.EmbedRubyRuntimeAdapterImpl.parse(EmbedRubyRuntimeAdapterImpl.java:93) at org.jruby.embed.ScriptingContainer.parse(ScriptingContainer.java:1163) at org.jruby.embed.ScriptingContainer.runScriptlet(ScriptingContainer.java:1223) at com.aptana.scripting.ScriptingEngine.getInitializedScriptingContainer(ScriptingEngine.java:292) at com.aptana.scripting.model.ScriptLoadJob.run(ScriptLoadJob.java:76) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:144) at com.aptana.scripting.model.AbstractScriptRunner.run(AbstractScriptRunner.java:180) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:274) at com.aptana.scripting.ScriptingEngine.runScript(ScriptingEngine.java:243) at com.aptana.scripting.model.BundleManager.loadScript(BundleManager.java:2032) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:129) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:30:08.930 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:30:08.930 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.ui.ide 4 0 2015-10-18 20:30:25.940 !MESSAGE (Build 4.3.1.201509302304) [ERROR] com.appcelerator.titanium.core/debug/dashboard Unknown SDK windows !ENTRY com.aptana.samples 4 0 2015-10-18 20:30:25.942 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Apple WatchOS2 !ENTRY com.aptana.samples 4 0 2015-10-18 20:30:25.944 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample iOS 9 App Search !ENTRY com.aptana.samples 4 0 2015-10-18 20:30:25.946 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Ti SDK 4.1 Example App !ENTRY com.aptana.samples 4 0 2015-10-18 20:30:25.947 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Employee Directory !ENTRY com.aptana.samples 4 0 2015-10-18 20:30:25.949 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Movies !ENTRY com.aptana.samples 4 0 2015-10-18 20:30:25.950 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Geocoder !ENTRY com.aptana.samples 4 0 2015-10-18 20:30:25.951 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Unable to retrieve the icon at null for sample Rss Reader !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:30:40.327 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:30:40.329 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-18 20:31:01.651 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:33:04.414 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-18 20:33:04.415 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !SESSION 2015-10-19 11:58:41.383 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.aptana.scripting 4 0 2015-10-19 11:58:56.260 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Failed to load bundle /Applications/Appcelerator Studio/plugins/com.appcelerator.titanium.core_3.1.2.1442811112/bundles/titanium_mobile.ruble !STACK 0 Can't construct a java object for !ruby/object:Ruble::Bundle; exception=Invalid tag: !ruby/object:Ruble::Bundle in "", line 1, column 5: --- !ruby/object:Ruble::Bundle ^ at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:325) at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:181) at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:140) at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:126) at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:296) at org.yaml.snakeyaml.Yaml.load(Yaml.java:290) at com.aptana.scripting.model.BundleCacher.load(BundleCacher.java:328) at com.aptana.scripting.model.BundleCacher.load(BundleCacher.java:286) at com.aptana.scripting.model.BundleManager$BundleLoadJob.run(BundleManager.java:110) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) Caused by: org.yaml.snakeyaml.error.YAMLException: Invalid tag: !ruby/object:Ruble::Bundle at org.yaml.snakeyaml.nodes.Tag.getClassName(Tag.java:108) at org.yaml.snakeyaml.constructor.Constructor.getClassForNode(Constructor.java:620) at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.getConstructor(Constructor.java:313) at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:323) ... 9 more !ENTRY com.appcelerator.titanium.core 4 0 2015-10-19 11:59:05.054 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-19 11:59:05.055 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY org.eclipse.ui 4 0 2015-10-19 12:00:46.475 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-19 12:01:32.519 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !ENTRY org.eclipse.ui 4 0 2015-10-19 12:01:32.605 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.internal_new_GC(Control.java:2118) at org.eclipse.swt.graphics.GC.cocoa_new(GC.java:207) at org.eclipse.swt.widgets.Tree.sendMeasureItem(Tree.java:2613) at org.eclipse.swt.widgets.Tree.cellSize(Tree.java:288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5528) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper_stret(Native Method) at org.eclipse.swt.widgets.Widget.expansionFrameWithFrame_inView(Widget.java:798) at org.eclipse.swt.widgets.Tree.expansionFrameWithFrame_inView(Tree.java:1283) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5907) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend_bool(Native Method) at org.eclipse.swt.internal.cocoa.NSRunLoop.runMode(NSRunLoop.java:42) at org.eclipse.swt.widgets.Display.sleep(Display.java:4691) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:368) at com.appcelerator.titanium.rcp.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:908) at org.eclipse.ui.internal.Workbench$3.eventLoopIdle(Workbench.java:498) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1155) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150) at com.appcelerator.titanium.rcp.IDEApplication.start(IDEApplication.java:126) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603) at org.eclipse.equinox.launcher.Main.run(Main.java:1465) !SESSION 2015-10-19 12:04:41.395 ----------------------------------------------- eclipse.buildId=4.3.1.201509302304 java.version=1.7.0_51 java.vendor=Oracle Corporation BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US Framework arguments: -keyring /Users/James/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/James/.eclipse_keyring -consoleLog -showlocation !ENTRY com.appcelerator.titanium.core 4 0 2015-10-19 12:05:05.388 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-19 12:05:05.392 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules !ENTRY com.appcelerator.titanium.core 4 0 2015-10-19 12:08:01.696 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/mobilesdk/osx !ENTRY com.appcelerator.titanium.core 4 0 2015-10-19 12:08:01.697 !MESSAGE (Build 4.3.1.201509302304) [ERROR] Location to be watched doesn't exist: /Library/Application Support/Titanium/modules