> @@ -37,6 +42,9 @@ > > public static final String SWAP_DEVICE = "1"; > > + @Resource > + Logger logger = Logger.NULL;
This is not (or it shouldn't be) a Guice managed object, so this will always be `Logger.NULL`, which does nothing. You can remove it. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/743/files#r30146891
