Merge pull request #421 from milkmansrevenge/master

Reduced log levels for compute parsing methods
This commit is contained in:
Adrian Cole 2012-03-10 16:18:26 -08:00
commit 11b36f2083
7 changed files with 15 additions and 15 deletions

View File

@ -123,7 +123,7 @@ public class ServerToNodeMetadata implements Function<Server, NodeMetadata> {
try { try {
return Iterables.find(hardwares.get(), new FindHardwareForServer(from)); return Iterables.find(hardwares.get(), new FindHardwareForServer(from));
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching hardware for server %s", from); logger.debug("could not find a matching hardware for server %s", from);
} }
return null; return null;
} }
@ -132,7 +132,7 @@ public class ServerToNodeMetadata implements Function<Server, NodeMetadata> {
try { try {
return Iterables.find(images.get(), new FindImageForServer(from)).getOperatingSystem(); return Iterables.find(images.get(), new FindImageForServer(from)).getOperatingSystem();
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching image for server %s in location %s", from, location.get()); logger.debug("could not find a matching image for server %s in location %s", from, location.get());
} }
return null; return null;
} }

View File

@ -98,7 +98,7 @@ public class InstanceToNodeMetadata implements Function<Instance, NodeMetadata>
try { try {
return Iterables.find(hardwares.get(), new FindHardwareForInstance(from)); return Iterables.find(hardwares.get(), new FindHardwareForInstance(from));
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching hardware for instance %s", from); logger.debug("could not find a matching hardware for instance %s", from);
} }
return null; return null;
} }
@ -107,7 +107,7 @@ public class InstanceToNodeMetadata implements Function<Instance, NodeMetadata>
try { try {
return Iterables.find(images.get(), new FindImageForInstance(from)).getOperatingSystem(); return Iterables.find(images.get(), new FindImageForInstance(from)).getOperatingSystem();
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching image for instance %s", from); logger.debug("could not find a matching image for instance %s", from);
} }
return null; return null;
} }
@ -129,7 +129,7 @@ public class InstanceToNodeMetadata implements Function<Instance, NodeMetadata>
try { try {
return Iterables.find(locations.get(), new FindLocationForInstance(from)); return Iterables.find(locations.get(), new FindLocationForInstance(from));
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching realm for instance %s", from); logger.debug("could not find a matching realm for instance %s", from);
} }
return null; return null;
} }

View File

@ -126,7 +126,7 @@ public class ServerToNodeMetadata implements Function<Server, NodeMetadata> {
try { try {
return Iterables.find(hardwares.get(), new FindHardwareForServer(from)); return Iterables.find(hardwares.get(), new FindHardwareForServer(from));
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching hardware for server %s", from); logger.debug("could not find a matching hardware for server %s", from);
} }
return null; return null;
} }
@ -135,7 +135,7 @@ public class ServerToNodeMetadata implements Function<Server, NodeMetadata> {
try { try {
return Iterables.find(images.get(), new FindImageForServer(from)); return Iterables.find(images.get(), new FindImageForServer(from));
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching image for server %s in location %s", from, location.get()); logger.debug("could not find a matching image for server %s in location %s", from, location.get());
} }
return null; return null;
} }

View File

@ -127,7 +127,7 @@ public class ServerDetailsToNodeMetadata implements Function<ServerDetails, Node
try { try {
return Iterables.find(images.get(), new FindImageForServer(from)).getOperatingSystem(); return Iterables.find(images.get(), new FindImageForServer(from)).getOperatingSystem();
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching image for server %s", from); logger.debug("could not find a matching image for server %s", from);
} }
return null; return null;
} }

View File

@ -124,7 +124,7 @@ public class ServerToNodeMetadata implements Function<Server, NodeMetadata> {
try { try {
image = Iterables.find(images.get(), new FindImageForServer(from)); image = Iterables.find(images.get(), new FindImageForServer(from));
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching image for server %s", from); logger.debug("could not find a matching image for server %s", from);
} }
return image; return image;
} }
@ -134,7 +134,7 @@ public class ServerToNodeMetadata implements Function<Server, NodeMetadata> {
try { try {
hardware = Iterables.find(hardwares.get(), new FindHardwareForServer(from)); hardware = Iterables.find(hardwares.get(), new FindHardwareForServer(from));
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching hardware for server %s", from); logger.debug("could not find a matching hardware for server %s", from);
} }
return hardware; return hardware;
} }

View File

@ -129,7 +129,7 @@ public class ServerToNodeMetadata implements Function<Server, NodeMetadata> {
try { try {
return Iterables.find(images.get(), new FindImageForServer(location, from)).getOperatingSystem(); return Iterables.find(images.get(), new FindImageForServer(location, from)).getOperatingSystem();
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching image for server %s in location %s", from, location); logger.debug("could not find a matching image for server %s in location %s", from, location);
} }
return null; return null;
} }

View File

@ -129,7 +129,7 @@ public class SliceToNodeMetadata implements Function<Slice, NodeMetadata> {
try { try {
return Iterables.find(hardwares.get(), new FindHardwareForSlice(from)); return Iterables.find(hardwares.get(), new FindHardwareForSlice(from));
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching hardware for slice %s", from); logger.debug("could not find a matching hardware for slice %s", from);
} }
return null; return null;
} }
@ -138,7 +138,7 @@ public class SliceToNodeMetadata implements Function<Slice, NodeMetadata> {
try { try {
return Iterables.find(images.get(), new FindImageForSlice(from)).getOperatingSystem(); return Iterables.find(images.get(), new FindImageForSlice(from)).getOperatingSystem();
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
logger.warn("could not find a matching image for slice %s in location %s", from, location); logger.debug("could not find a matching image for slice %s in location %s", from, location);
} }
return null; return null;
} }