Replaced log.warning with debug msg.

We can now list all available projects, so there is no need to warn.
This commit is contained in:
2016-05-20 11:33:26 +02:00
parent 2a0ef39b12
commit bdef942b0b

View File

@@ -532,7 +532,7 @@ class BlenderCloudBrowser(bpy.types.Operator):
node_type='group_texture')
else:
# Query for projects
self.log.warning("Not node UUID and no project UUID, I can't do anything!")
self.log.Debug('No node UUID and no project UUID, listing all projects')
children = await pillar.get_texture_projects()
for proj_dict in children:
self.add_menu_item(ProjectNode(proj_dict), None, 'FOLDER', proj_dict['name'])