You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

equinox-debug.properties 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. # Licensed to the Apache Software Foundation (ASF) under one or more
  2. # contributor license agreements. See the NOTICE file distributed with
  3. # this work for additional information regarding copyright ownership.
  4. # The ASF licenses this file to You under the Apache License, Version 2.0
  5. # (the "License"); you may not use this file except in compliance with
  6. # the License. You may obtain a copy of the License at
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. # Unless required by applicable law or agreed to in writing, software
  9. # distributed under the License is distributed on an "AS IS" BASIS,
  10. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. # See the License for the specific language governing permissions and
  12. # limitations under the License.
  13. #### Debugging options for org.eclipse.bundles
  14. # Turn on general debugging for org.eclipse.bundles
  15. org.eclipse.osgi/debug = false
  16. # Prints out class loading debug information
  17. org.eclipse.osgi/debug/loader = false
  18. # Prints out event (FrameworkEvent/BundleEvent/ServiceEvent) and listener debug information
  19. org.eclipse.osgi/debug/events = false
  20. # Prints out OSGi service debug information (registration/getting/ungetting etc.)
  21. org.eclipse.osgi/debug/services = false
  22. # Prints out bundle manifest parsing debug information
  23. org.eclipse.osgi/debug/manifest = false
  24. # Prints out LDAP filter debug information
  25. org.eclipse.osgi/debug/filter = false
  26. # Prints out security (PermissionAdmin service) debug information
  27. org.eclipse.osgi/debug/security = false
  28. # Prints out start level service debug information
  29. org.eclipse.osgi/debug/startlevel = false
  30. # Prints out package instance service debug information
  31. org.eclipse.osgi/debug/packageadmin = false
  32. # Prints out timing information for bundle activation
  33. org.eclipse.osgi/debug/bundleTime = false
  34. # Debug the loading of message bundles
  35. org.eclipse.osgi/debug/messageBundles = false
  36. # Eclipse adaptor options
  37. org.eclipse.osgi/eclipseadaptor/debug = false
  38. org.eclipse.osgi/eclipseadaptor/debug/location = false
  39. org.eclipse.osgi/eclipseadaptor/debug/platformadmin = false
  40. org.eclipse.osgi/eclipseadaptor/debug/platformadmin/resolver = false
  41. org.eclipse.osgi/eclipseadaptor/converter/debug = false
  42. ### OSGi resolver options
  43. # Turns on debugging for the resolver
  44. org.eclipse.osgi/resolver/debug = false
  45. # Prints out wiring information after the resolver has completed the resolve process
  46. org.eclipse.osgi/resolver/wiring = false
  47. # Prints out Import-Package information
  48. org.eclipse.osgi/resolver/imports = false
  49. # Prints out Require-Bundle information
  50. org.eclipse.osgi/resolver/requires = false
  51. # Prints out package grouping information form the "uses" clause
  52. org.eclipse.osgi/resolver/grouping = false
  53. # Prints out cycle information
  54. org.eclipse.osgi/resolver/cycles = false
  55. # Prints out Eclipse-GenericRequire information
  56. org.eclipse.osgi/resolver/generics = false
  57. #### Profile settings
  58. org.eclipse.osgi/profile/startup = false
  59. org.eclipse.osgi/profile/benchmark = false
  60. org.eclipse.osgi/profile/debug = false
  61. # Override the default implemenation
  62. org.eclipse.osgi/profile/impl = org.eclipse.osgi.internal.profile.DefaultProfileLogger
  63. # Append all profile messages to the filename specified
  64. org.eclipse.osgi/defaultprofile/logfilename =
  65. # Output all profile log messages synchronously to the jvm console.
  66. # By default, all log messages are cached until the log buffer is
  67. # requested.
  68. org.eclipse.osgi/defaultprofile/logsynchronously = false
  69. # Specify the size of the default profile implementation log buffer.
  70. org.eclipse.osgi/defaultprofile/buffersize = 256
  71. #### Monitoring settings
  72. # monitor class loading
  73. org.eclipse.osgi/monitor/classes = false
  74. # monitor bundle activation
  75. org.eclipse.osgi/monitor/activation = false
  76. # monitor resource bundle (*.properties) loading
  77. org.eclipse.osgi/monitor/resources = false
  78. #### Trace settings
  79. # trace class loading - snapshot the execution stack when a class is loaded
  80. org.eclipse.osgi/trace/classLoading = false
  81. # trace location - file in which execution traces are written
  82. org.eclipse.osgi/trace/filename = runtime.traces
  83. # trace filters - Java properties file defining which classes should
  84. # be traced (if trace/classLoading is true)
  85. # File format:
  86. # plugins=<comma separated list of plugins whose classes to trace>
  87. # packages=<comma separated list of package prefixes of classes to trace>
  88. # Note that there may be many 'plugins' and 'packages' lines in one file.
  89. org.eclipse.osgi/trace/filters = trace.properties
  90. # trace bundle activation - snapshot the execution stack when a bundle is activated
  91. org.eclipse.osgi/trace/activation = false