# Il2CppStacktraceInformation

> Stack trace information options to choose how much information to include in IL2CPP generated stack traces.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEditor](/engine/6000.0/script-reference/unityeditor.md)
* **Assembly:** UnityEditor

```csharp
public enum Il2CppStacktraceInformation
```

## Fields

| Value                                                                                                                   | Description                                                                                                                                                                                                                                                                                     |
| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [MethodFileLineNumber](/engine/6000.0/script-reference/unityeditor/il2cppstacktraceinformation/methodfilelinenumber.md) | MethodFileLineNumber will provide the method name, the file, and the line number in the file for each frame in a managed stack trace. This matches Mono's stack trace behavior. This may increase the size of the project by a few megabytes depending on the amount of scripts in the project. |
| [MethodOnly](/engine/6000.0/script-reference/unityeditor/il2cppstacktraceinformation/methodonly.md)                     | MethodOnly will only provide the method name in managed stack traces.                                                                                                                                                                                                                           |
