# Customise an existing blade

Here’s how to customise blades that you’ve already deployed, by changing their configuration.

You can do simple customisations of a blade that you’ve deployed, by overriding parts of its configuration.

1. Create in _&lt;Framework-root>/global_config/overrides/_ a directory with the name of the blade.

   For example:

   _&lt;Framework-root>/global_config/overrides/MyAdapterBlade/_
2. Create in this directory the directory structure leading to the configuration file that you wish to override.

   For example:

   _&lt;Framework-root>/global_config/overrides/MyAdapterBlade/DataSource/etc/_
3. Create a new configuration file with the appropriate name in this new directory.

   For example:

   _&lt;Framework-root>/global_config/overrides/MyAdapterBlade/DataSource/etc/myadapter.conf_
4. Add the additional/modified configuration to the file.

   For example:

```
log-level DEBUG
```

In the above example, we’ve changed the `log-level` of the C-based Integration Adapter that’s part of MyAdapterBlade, so that the Adapter logs more detailed information for debug purposes. This setting overrides the `log-level` setting of `INFO` in the blade’s standard configuration file _&lt;Framework-root>/kits/MyAdapterBlade/MyAdapterBlade/DataSource/etc/myadapter.conf_ The rest of the configuration in the standard configuration file still applies, so if the standard configuration has a `log-dir` item, the Adapter’s log file is still generated in that directory.

**📌 NOTE**\
Don’t delete, change or add to any of the files in the deployed blade itself. That means don’t change anything in _&lt;Framework-root>/kits/&lt;blade-name>/_ and its subdirectories.

---

**See also:**

* [Deploy a custom blade](cdf-deploy-a-custom-blade.md)
* [Package a custom blade](cdf-package-a-custom-blade.md)
* [Add a blade to source control](cdf-add-a-blade-to-source-control.md)
* [Retrieve a blade from source control](cdf-retrieve-a-blade-from-source-control.md)
