It looks like you entered "Debug" where a number was expected in one of the filtering options.
You might possibly be able to find where it stores that, in the .metadata for the workspace. The alternative would be to simply create a new workspace, and reimport your projects. I suggest never placing projects in your workspace directory -- put them under source control, and import them into one or more workspaces as appropriate. If you didn't do this, just exit Eclipse, delete the .metadata directory to discard the old workspace, and move the project directories out of the workspace directory, and restart Eclipse. It will come up with a new workspace, then use File / Import... / Existing Project into Workspace to hook back to your projects. Then check them into your source control system. If you already HAVE them checked into revision control, but have the workspace pointing directly at your working copy, or worse, checked in the .metadata directory -- just check in the changes, and delete the workspace directory's content from your filesystem, including the .metadata directory. If you checked in the .metadata directory, delete it from your revision control system as well -- it should NEVER be checked in. Then check out the project files in another location, restart Eclipse, and import the projects as above. Either way, you'll lose your Eclipse workspace settings in the process. It's a good idea to record somewhere what you do to set up your workspace, so you can easily reproduce it. There are various options for saving various workspace options, but they're not complete or convenient. I find that since they are NOT complete, they really don't help you, since you have to check everything anyway. One of the things that will be lost will be the location of the Android SDK. So expect a dialog about that. On Nov 5, 10:15 am, broody <[email protected]> wrote: > Logcat in eclipse has been working fine for me until bout a week ago. > I'm not sure how I managed to do it to both my of development > environments... (PC and Mac) > > I get the follow error when I open up logcat in eclipse. > > Could not create the view: For input string: "Debug" > > java.lang.NumberFormatException: For input string: "Debug" > at > java.lang.NumberFormatException.forInputString(NumberFormatException.java: > 48) > at java.lang.Integer.parseInt(Integer.java:449) > at java.lang.Integer.parseInt(Integer.java:499) > at > com.android.ddmuilib.logcat.LogFilter.loadFromString(LogFilter.java: > 134) > at com.android.ide.eclipse.ddms.views.LogCatView > $FilterStorage.getFilterFromStore(Unknown Source) > at com.android.ddmuilib.logcat.LogPanel.createFilters(LogPanel.java: > 1229) > at com.android.ddmuilib.logcat.LogPanel.createControl(LogPanel.java: > 441) > at com.android.ddmuilib.Panel.createPanel(Panel.java:29) > at > com.android.ide.eclipse.ddms.views.LogCatView.createPartControl(Unknown > Source) > at > org.eclipse.ui.internal.ViewReference.createPartHelper(ViewReference.java: > 375) > at > org.eclipse.ui.internal.ViewReference.createPart(ViewReference.java: > 229) > at > org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReferen > ce.java: > 595) > at org.eclipse.ui.internal.WorkbenchPage > $ActivationList.setActive(WorkbenchPage.java:4218) > at org.eclipse.ui.internal.WorkbenchPage > $18.runWithException(WorkbenchPage.java:3277) > at org.eclipse.ui.internal.StartupThreading > $StartupRunnable.run(StartupThreading.java:31) > at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) > at > org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java: > 134) > at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java: > 3586) > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3279) > at > org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.ja > va: > 803) > at org.eclipse.ui.internal.Workbench > $31.runWithException(Workbench.java:1567) > at org.eclipse.ui.internal.StartupThreading > $StartupRunnable.run(StartupThreading.java:31) > at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) > at > org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java: > 134) > at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java: > 3586) > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3279) > at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2548) > at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438) > at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671) > at > org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java: > 332) > at > org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java: > 664) > at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java: > 149) > at > org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication > .java: > 115) > at > org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java : > 196) > at > org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication > (EclipseAppLauncher.java: > 110) > at > org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseA > ppLauncher.java: > 79) > at > org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java: > 369) > at > org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java: > 179) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java: > 39) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImp > l.java: > 25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) > at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) > at org.eclipse.equinox.launcher.Main.run(Main.java:1407) -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

