We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a KernelInfo class which regroup all the info useful for debugging/logging, for instance:
KernelInfo
public interface KernelInfo { Map<String, Plugin> plugins(); UnitModule unitModule(Class<? extends Plugin> plugin); UnitModule overridingUnitModule(Class<? extends Plugin> plugin); UnitModule nonGuiceUnitModule(Class<? extends Plugin> plugin); UnitModule nonGuiceOverridingUnitModule(Class<? extends Plugin> plugin); GlobalModule globalModule(); Set<URL> scannedURLs(); }
This class will be provided by a new method on the kernel:
public interface Kernel { ... KernelInfo getInfo(); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create a
KernelInfo
class which regroup all the info useful for debugging/logging, for instance:This class will be provided by a new method on the kernel:
The text was updated successfully, but these errors were encountered: